.slide-content {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    transition: opacity 0.5s ease;
    height: auto;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-bottom: 40px; /* Espaço para os controles */    
}

.slide-container {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    border: 3px solid black;
}

.title-slide {
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.9);
}

.author-slide {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.chorus-slide, .complete-chorus {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

body {
    transition: background-color 0.3s ease;
}

.dark .slide-container {
    border-color: #444;
}

.version {
    font-size: 0.45em !important; /* Adjust the size as needed */
    color: rgb(177, 187, 196);
}

#info-icon {
    color: #175691;
    transition: opacity 0.2s;
}

#info-icon:hover {
    opacity: 0.8;
}

#info-overlay {
    backdrop-filter: blur(4px);
    background-color: rgba(0, 0, 0, 0.5);
    height: 100vh;
    overflow-y: auto;
}

#info-overlay > div {
    position: relative;
    box-sizing: border-box;
    display: block;
    max-height: 90vh;
    overflow-y: auto;
    width: 672px;
    text-size-adjust: 100%;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    line-height: 24px;
    tab-size: 4;
    background-color: rgb(31, 41, 55);
    border: 0 solid rgb(229, 231, 235);
    border-radius: 8px;
    unicode-bidi: isolate;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.light #info-overlay > div {
    background-color: rgb(255, 255, 255);
}

.dark #info-overlay > div {
    --tw-bg-opacity: 1 !important;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity)) !important;
}

.text-sm {
    color: #ffff
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .controls-container {
        flex-direction: column;
        gap: 1rem;
    }

    button {
        min-height: 48px;
        min-width: 48px;
        padding: 1rem;
    }

    #hymn-select {
        width: 100%;
    }

    .mobile-menu {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }

    .desktop-only {
        display: none;
    }
}

/* Estilos para dispositivos móveis */
@media (max-width: 768px) {
    body {
        padding: 10px;
        font-size: 1.2em; /* Aumenta o tamanho da fonte */
    }

    .controls-container {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    button {
        padding: 15px;
        font-size: 1em;
        border-radius: 5px;
        cursor: pointer;
    }

    #hymn-select {
        width: 100%;
        padding: 10px;
        font-size: 1em;
        border-radius: 5px;
    }

    .mobile-menu {
        display: flex;
        justify-content: space-around;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        padding: 10px;
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu button {
        flex: 1;
        margin: 0 5px;
    }
}

/* Ajustes para a div settings */
.settings {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem; /* Espaçamento entre os itens */
    justify-content: flex-start; /* Alinhamento à esquerda */
}


.complete-verse,
.complete-chorus {
    margin-bottom: 3rem;
    text-align: left !important;
}

/* Adicione ao seu CSS */
.slide-content::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}

.slide-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.slide-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

.slide-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Para Firefox */
.slide-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.slide-content::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Edge */
}

.slide-content {
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-right: 10px;
}

.checkbox-container input[type='checkbox'] {
    width: 20px;
    height: 20px;
    border: 2px solid #FFA500;
    border-radius: 4px;
    margin-right: 10px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.checkbox-container input[type='checkbox']:checked {
    background-color: #FFA500;
    border-color: #FFA500;
}

.checkbox-label {
    font-size: 1rem;
    color: #f8f8f8;
}