html {
    line-height: 1.7;
}

body {
    font-family: Arial, sans-serif;
    background-color: rgb(203, 220, 236);
}


footer {
    display: none;
}

#show-selector {
    font-size: 16px;
    margin: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

#selectLabel {
    color: #1e3a5f;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

#selectAlbum {
    appearance: none;
    -webkit-appearance: none;
    width: auto;
    min-width: 180px;
    padding: 0.4rem 2.2rem 0.4rem 0.9rem;
    border-radius: 20px;
    border: 1.5px solid #1e3a5f;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e3a5f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
    color: #1e3a5f;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    outline: none;
}

#selectAlbum:hover {
    background-color: #1e3a5f;
    color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}

#selectAlbum:focus {
    border-color: #16304f;
    box-shadow: 0 0 0 3px rgba(30,58,95,0.12);
}

#slide {
    width: 90%;
    display: block;
}

#controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
}

#controls button {
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: background-color 0.2s;
    line-height: 1;
}

#controls button:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 670px) {
    #slide {
        width: 660px;
    }
}

@media screen and (min-width: 1280px) {
    #slide {
        width: 1000px;
    }


}