body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

header, footer {
    text-align: center;
    padding: 1em;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#mixtape-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px;
}

.mixtape {
    padding: 15px;
    margin: 10px;
    border: 1px solid black;
    background-color: white;
    cursor: grab;
    border-radius: 5px;
    /* Make sure to specify width and height or set to inline-block for absolute positioning */
}

/* Styles for dragging */
.dragging {
    position: absolute;
    z-index: 1000;
    opacity: 0.8;
    cursor: grabbing;
}

/* Styles for the drop area when highlighted */
.highlight {
    background-color: #e0e0e0;
    border: 3px dashed #666;
}

#tape-deck {
    border: 3px dashed #666;
    padding: 20px;
    margin: 20px;
    transition: background-color 0.2s;
}

@media (max-width: 600px) {
    #mixtape-container {
        flex-direction: column;
    }

    .mixtape {
        width: 80%;
    }
}
