body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    max-width: 100%;
    min-width: 320px;
    background: #f4f4f4;
}

.navbar {
    background-color: #cc6600;
    color: black;
    padding: 15px 0;
    width: 100%;
}

.navbar-top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 0 15px;
}

.navbar .logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 0;
}

.menu-toggle {
    position: absolute;
    right: 15px;
    cursor: pointer;
    display: none;
}

.menu-toggle img {
    width: 30px;
    height: 30px;
}

.navbar nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
}

.navbar nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

.navbar nav ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .menu-toggle {
        display: block;
    }

    #navbar-menu {
        display: none;
    }

    #navbar-menu.active {
        display: block;
    }

    .navbar nav ul {
        flex-direction: column;
        gap: 15px;
        margin: 10px 0 0 0;
        align-items: center;
        text-align: center;
    }
}

.song-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 20px;
}

.song {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    width: 220px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: 0.2s;
}

.song:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/*
Author: Max Tolsma
Beschrijving: FLSOUND website, sound samples
Datum: 18-6-2025
*/

.song img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border: none;
    padding: 2px 5px;
    cursor: pointer;
    display: none; /* standaard verborgen */
}

.add-form {
    text-align: center;
    margin: 20px;
}

.add-form input {
    padding: 5px;
    margin: 5px;
}

.song:hover .delete-btn {
    display: inline; /* zichtbaar bij hover op het kaartje */
}