.header {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    height: 60px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.header .left {
    display: flex;
    align-items: center;
    padding-left: 10px;
}
.header .menu-icon,
.header .logo {
    margin-right: 10px;
    border-radius: 5px;
}
.header .menu-icon {
    font-size: 25px;
    margin-right: 20px;
    cursor: pointer;
}
.header .logo {
    font-size: 16px;
}
.header .name {
    font-size: 24px;
}
.header .right {
    display: flex;
    align-items: center;
    padding-right: 10px;
}
.header .right .icon {
    margin-left: 10px;
    font-size: 30px;
    cursor: pointer;
}
.sidebar {
    position: absolute;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #333;
    color: #fff;
    padding: 0px;
    transform: translateX(-250px);
    transition: transform 0.3s ease;
    z-index: 1000; /* Valor alto para prioridade */
    padding-top: 10px;
}
.sidebar.active {
    transform: translateX(0);
}
.sidebar .logo {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    align-content: center;
    padding-left: 70px;
}
.sidebar .links {
    display: flex;
    flex-direction: column;
    padding-left: 70px; /* Adiciona um espaçamento interno */
    cursor: pointer;
}

.sidebar .links a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: inline-block; /* Mantém o layout sem forçar altura extra */
    margin: 1px 0; /* Pequeno espaçamento entre os links */
    padding: 2px 0; /* Adiciona espaço interno sem afetar margens */
    cursor: pointer;

}
.sidebar .iframe {
    padding-left: 0px; /* Adiciona um espaçamento interno */

}

/* Remove o último margin-bottom para evitar espaço extra no final */
.sidebar .links a:last-child {
    margin-bottom: 0;
}
.content {
    margin-top: 60px;
    padding: 20px;
}
.modal-pro {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.text-container-pro {
    margin-top: 5px;
    margin-right: 10px;
    align-items: center;
}
.icon-pro {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}
.large-image-pro {
    width: 100%;
    max-width: 200px;
    height: auto;
}
.h1-pro {
    display: flex;
    align-items: center;
    font-size: 24px;
}
@media (min-width: 601px) {
    .modal-pro {
        flex-direction: row;
    }
    .text-container-pro {
        text-align: justify;
        margin-left: 20px;
    }
    .large-image-pro {
        margin-bottom: 0;
        margin-right: 20px;
    }
    .header .left {
        display: flex;
        align-items: center;
        padding-left: 30px;
    }
    .header .right {
        display: flex;
        align-items: center;
        padding-right: 50px;
    }
}
        #logado, #naoLogado {
            display: none;
        }
        #login, #naologin {
            display: none;
        }
        #payment_yes, #payment_not {
            display: none;
        }
        .pro-showview {
        display: none;
        }
        .yes-pro {
        display: block;
        }
        .nopro-showview {
        display: none;
        }
        .no-pro {
        display: block;
        }
    /*************************************************** menu.css **********************************/
    /* Estilo do modal */
    .modal {
        display: none; /* Oculto por padrão */
        position: fixed; /* Fixo em tela cheia */
        z-index: 1; /* Sobrepõe outros elementos */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto; /* Scroll se necessário */
        background-color: rgba(0, 0, 0, 0.4); /* Fundo escuro com transparência */
    }
    .modal-content {
        background-color: #fff;
        margin: 20% auto;
        padding: 20px;
        padding-top: 5px;
        border: 1px solid #888;
        width: 80%; /* Largura do modal */
        max-width: 500px; /* Largura máxima */
        border-radius: 10px;
    }
    .close-button {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
    }
    .close-button:hover,
    .close-button:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }
    button#button,
    button#retrieve-button,
    button#delete-notes-button,
    button#confirm-delete-selected-button,
    button#confirm-delete-all-button,
    button#cancel-delete-button,
    button#recyclebin-button,
    button#delete-all-button,
    button#restore-selected-button,
    button#submit-pin{
        background-color: #b80f52;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        cursor: pointer;
        margin: 10px 0;
    }
    /* Estilo do modal para deletar notas */
    .modal-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        margin-top: 10px;
    }
    button#delete-selected-button {
        background-color: #FF0000;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        cursor: pointer;
    }
    #button-options {
        background-color: #033768e1;
        color: white;
        border: none;
        border-radius: 5px;
        padding: 10px 20px;
        cursor: pointer;
        margin: 10px 0;
    }
    #notes-list {
        max-height: 300px;
        overflow-y: auto;
    }
    #notes-list .note-item {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    #notes-list .note-item input[type="checkbox"] {
        margin-right: 10px;
    }
    #restore-notes-list {
        max-height: 300px;
        overflow-y: auto;
    }
    #restore-notes-list .note-item {
        display: flex;
        align-items: center;
        margin-bottom: 10px;
    }
    #restore-notes-list .note-item input[type="checkbox"] {
        margin-right: 10px;
    }
    @media (min-width: 601px) {
    .modal-content {

        margin: 10% auto;
        
    }
    }
        /*************************************************** poup up de avaliação ***********************/
    /* Estilização do popup */
    #ratingPopup {
        position: fixed;
        bottom:1%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
        background-color: #393d4d;
        color: #ffffff;
        display: none;
        z-index: 999999;
        text-align: center;
    }

    /* Ícone de fechar (X) */
    #closePopup {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 20px;
        cursor: pointer;
        color: #bfb9b9;
    }

    /* Container de estrelas */
    .stars {
        display: flex;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    /* Estilo padrão das estrelas */
    .star {
        font-size: 36px;
        color: gray;
        transition: color 0.3s;
    }

    /* Quando iluminadas */
    .star.active {
        color: gold;
    }
  /*************************************************** poup up de termos de uso ************/
  /* Estilização do fundo escurecido */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Fundo escurecido */
    display: none;
    z-index: 999998;
}

/* Estilos do popup */
#termsPopup {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 340px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
    background-color: #393d4d;
    color: #ffffff;
    display: none;
    z-index: 999999;
    text-align: center;
}

    /* Botão Aceitar */
    .btn-accept {
        margin-top: 10px;
        padding: 10px 20px;
        border-radius: 20px;
        cursor: pointer;
        color: #fff;
        background: #b80f52;
        border: none;
        font-size: 16px;
    }

    /* Área de texto para os Termos */
    #termsText {
        width: 100%;
        height: 120px;
        background: #f0f0f0;
        color: #000;
        font-size: 14px;
        padding: 10px;
        border: none;
        resize: none;
        text-align: left;
    }

    /* Links para Termos e Privacidade */
    .terms-links {
        margin-top: 10px;
        font-size: 14px;
    }

    .terms-links a {
        color: #e0e0e0;
        text-decoration: underline;
    }