* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
}
/* Configurações de corpo */
body {
    background: linear-gradient(135deg, #6A11CB, #FFAA00);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container principal */
#app-screen {
    margin: 0;
    width: 100%;
    background: linear-gradient(135deg, #6b11cb00, #ffaa0000);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    margin-bottom: 20%;
}


/* Tela de Login */
#login-screen {
    text-align: center;
    padding: 30px;
    background: linear-gradient(to bottom, #dd2626, #b4b70b);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h2 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #fff;
}
h1 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 26px;
    color: #ffffff;
    text-align: center;  
}
#num-posts{
    margin-top: 20px;
    font-size: 25px;
    color: #ffffff;
    text-align: center;  
}

#login-button {
    background-color: #4285F4;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#login-button:hover {
    background-color: #3367d6;
}

/* Cabeçalho */
#app-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    height: 60px;
    
}
/* Barra de pesquisa */
#search-bar {
    padding: 10px;
    font-size: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background-color: #444;
    color: #fff;
    width: 70%;
    transition: background-color 0.3s ease;
    height: 80%;
    margin-top: 5px;
}

#search-bar:focus {
    background-color: #555;
    outline: none;
}

#search-button {
    background-color: #4e9af1;
    color: #fff;
    padding: 10px 20px;
    font-size: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    height: 80%;
    width: 25%;
    margin-left: 10px;
    margin-top: 10px;
    text-align: center;
}

#search-button:hover {
    background-color: #3b80d0;
}

/* Botão de sair */
#logout-button {
    background-color: #f44336;
    color: white;
    padding: 7px 14px;
    font-size: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    height: 80%;
}

#logout-button:hover {
    background-color: #d32f2f;
}

/* Container das notas */
#posts-container {
    margin-bottom: 20px;
}

.post {
    background-color: #444;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.post h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post p {
    margin: 5px 0;
    font-size: 15px;
}

button {
    background-color: #f1c40f;
    color: white;
    padding: 8px 16px;

    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #f39c12;
}

button:active {
    background-color: #e67e22;
}

/* Destacar notas perto do vencimento */
.highlighted {
    border: 2px solid #f39c12;
    background-color: #e67e22;
    color: #fff;
}

#add-post-form {
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none; 
    position: fixed;
    top: 2%;
    left: center;
    margin: 10px;
}
#password-form {
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
#delet-password-form {
    background-color: #444;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

form label {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

form textarea{
    font-size: 10px;
}

form input, form select {
    width: 100%;
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 10px;
}
#obs{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 10px;
    height: 200px;
}
form input:focus, form select:focus {
    outline: none;
    background-color: #444;
}

/* Botões de salvar e cancelar */
form button {
    width: 45%;
    margin: auto;
    background-color: #4e9af1;
    border-radius: 5px;
    height: 50px;
}

#cancel-button {
    background-color: #e74c3c;
}

#cancel-button:hover {
    background-color: #c0392b;
}

form button:hover {
    background-color: #3b80d0;
}



@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Restante do CSS */

/* Botão para adicionar nota */
#add-div{
    position: fixed;
    top: 79%;
    right: 2%;
}
#add-post-button {
    background-color: #2e774d;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 20px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
    display: inline-block;
    text-align: center;
}

#add-post-button:hover {
    background-color: #22643d;
}

/* Container das notas */
#posts-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post {
    background-color: #444;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Destacar notas perto do vencimento */
.highlighted {
    border: 2px solid #f39c12;
    background-color: #e67e22;
    color: #fff;
}
.realHighlighted{
    border: 4px solid #890c0c;
    background-color: #e62222;
    color: #fff;
}
/* Estilos para o modal */
#post-modal {
    display: none; /* Oculta o modal inicialmente */
    position: fixed; /* Fixa o modal na tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro semi-transparente */
    z-index: 1000; /* Garante que o modal fique sobre outros elementos */
    display: flex; /* Define como flex container */
    justify-content: center; /* Centraliza horizontalmente */
    align-items: center; /* Centraliza verticalmente */
    overflow: hidden; /* Garante que não vaze da tela */
}

/* Conteúdo do modal */
#modal-content {
    background-color: #444; /* Fundo branco */
    border-radius: 8px; /* Borda arredondada */
    padding: 20px; /* Espaçamento interno */
    max-width: 800px; /* Largura máxima */
    width: 90%; /* Largura adaptativa */
    max-height: 80%; /* Altura máxima relativa à tela */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra sutil */
    overflow-y: auto; /* Adiciona rolagem vertical se o conteúdo ultrapassar */
    animation: fadeIn 0.3s ease; /* Animação ao aparecer */
    margin: auto;
    text-align: center;
}

/* Animação para o modal */
@keyframes fadeIn {
    from {
        opacity: 0; /* Transparente no início */
        transform: scale(0.9); /* Levemente menor */
    }
    to {
        opacity: 1; /* Totalmente visível */
        transform: scale(1); /* Tamanho original */
    }
}

/* Título do modal */
#modal-content h3 {
    margin-top: 10px; /* Remove margem superior */
    font-size: 1em; /* Tamanho do título */
    color: #ffffff; /* Cor do título */
    word-wrap: break-word; /* Permite quebrar palavras muito longas */
}

/* Texto do modal */
#modal-content p {
    font-size: 1em; /* Tamanho do texto */
    color: #ffffff; /* Cor do texto */
    margin: 15px 0; /* Espaçamento vertical */
    word-wrap: break-word; /* Permite quebrar palavras muito longas */
    text-align: left;
}
#modal-content legend{
    color: rgb(255, 255, 255);
    font-size: 25px;
}
/* Botão de fechar o modal */
#close-modal-button {
    background-color: #007bff; /* Cor azul */
    color: white; /* Cor do texto */
    border: none; /* Sem borda */
    border-radius: 4px; /* Borda arredondada */
    padding: 10px 20px; /* Espaçamento interno */
    font-size: 1em; /* Tamanho do texto */
    cursor: pointer; /* Cursor de clique */
    transition: background-color 0.3s; /* Animação de hover */
    margin: 20px;

}

#close-modal-button:hover {
    background-color: #0056b3; /* Cor azul mais escura no hover */
}
#showbtn{
    background-color: #007bff; /* Cor azul */
    color: white; /* Cor do texto */
    border: none; /* Sem borda */
    border-radius: 4px; /* Borda arredondada */
    padding: 10px ; /* Espaçamento interno */
    font-size: 1em; /* Tamanho do texto */
    cursor: pointer; /* Cursor de clique */
    transition: background-color 0.3s; /* Animação de hover */
    width: 80%;
    height: 50px;
    margin-bottom: 20px;
    margin-top: 30px;
}
#show-container{
    text-align: center;
}
a{
    margin-bottom: 15px;
    font-size: 10px;
    color: #fff;
}
#num-posts{
    font-size: 1.2em;
    color: #fff;
}
#user-container{
    text-align: right;
    font-size: 25px;
    color: #ffffff;
}
.con{
    font-size: 15px;
    color: rgb(206, 119, 119);
    margin: 5px;
    width: 125px;
    height: 3em;
}
legend{
    text-align: center;
    font-size: 22px;
    font-style: italic;
}
.ser{
    text-align: justify;
    justify-content: space-between;
    align-items: flex-end   ;
    display: flex;
}
ol{
    margin: auto;
    margin-left: 20px;
    margin-top: 20px;
}
.sit{
    font-size: 15px;
    color: rgb(103, 112, 240);
    margin: 5px;
    width: 125px;
    height: 3em;

}
pri{
    margin-top: 20px;
}


.ai{
    font-size: 15px;
    color: rgb(224, 125, 235);
    margin: 5px;
    width: 125px;
    height: 3em;
}
.comp{
    font-size: 15px;
    color: rgb(134, 125, 235);
    margin: 5px;
    width: 125px;
    height: 3em;
}
#rev{
    text-align: center;
}
details{
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 20px;
}
.tit{
    color: #87dbb0;
    text-decoration-color: #4d9f69;
    font-size: 20px;
}
#sync{
    font-size: 30px;
    color: #80a8d2;
    text-decoration-color: #5986b6;
}
.subtit{
    font-size: 18px;
    color: #dbde93;
    text-decoration-color: #d5d885; 
}
.cha{
    font-size: 15px;
    color: rgb(218, 140, 52);
    margin: 5px;
    width: 125px;
    height: 3em;
}
.spa{
    margin: 10px;
    border-radius: 15px;
    text-align: center;
}
.back{
    font-size: 22px;
}
.tit{
    font-size: 28px;
    color: #1E3A8A

    
}
#sync{
    font-size: 30px;
    color: #d1f4f9
    
}
.subtit{
    font-size: 25px;
    color: #3781e2;
    text-align: center;
    
}
.cha{
    font-size: 18px;
    color: rgb(218, 140, 52);
    margin: 5px;
    width: 125px;
    height: 3em;
}
.but1{
    font-size: 15px;
    width: 45%;
    height: 6rem;
    background: linear-gradient(135deg, #3d7a20, #468dd3);
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.3)
}
#user-container{
    padding: 10px;
    font-size: 20px;
    text-align: left
}
.tit{
    font-size: 28px;
    color: rgb(168, 168, 168)

    
}
#sync{
    font-size: 30px;
    color: #d1f4f9
    
}
.subtit{
    font-size: 25px;
    color: #f08809;
    text-align: center;
    
}
.det{
    background-color: #3b0970;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1)
}
.det{
    background-color: #091599;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5)
}
.cha{
    font-size: 18px;
    color: rgb(218, 140, 52);
    margin: 5px;
    width: 125px;
    height: 3em;
}
.but1{
    font-size: 15px;
    width: 45%;
    height: 6rem;
    background: linear-gradient(135deg, #888d3c, #216512);
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
}
.nam{
    font-size: 15px;
    max-width: 100px;
    word-wrap: break-word;
    white-space: normal;
}
.butt{
    font-size: 25px;
    min-width: 50px;
    max-width: 100px;
    height: 4rem;
    background: linear-gradient(135deg, #acc5dd, #558ae0);
    cursor: pointer;
    margin: 5px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
    border-radius: 500px;

}
.group{
    text-align: center;
}
.buttt{
    font-size: 25px;
    min-width: 50px;
    max-width: 100px;
    height: 4rem;
    background: linear-gradient(135deg, #29c355, #155404);
    cursor: pointer;
    margin: 5px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
    border-radius: 500px;
    transition: all 0.3s ease;
}
#add-post-button{
    background: linear-gradient(135deg, #9529c3, #82046b);
}
#aihh{
    position: fixed;
    bottom: 0px;
    background: linear-gradient(145deg,rgb(193, 62, 203),rgb(158, 7, 163));
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: flex;
    width: 100%;
    justify-content: space-evenly;
}
 #temas{
  
    transition: all 0.3s ease;
}

.group{
    transition: all 0.3s ease;
}
#add-post-button{
    background: linear-gradient(135deg, #29c383, #075d04);
}
#tutor{
  
    transition: all 0.3s ease;
}
.butttt{
    font-size: 20px;
    min-width: 40px;
    max-width: 100px;
    height: 3.7rem;
    background: linear-gradient(135deg, #acc5dd, #558ae0);
    cursor: pointer;
    margin: 5px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
    border-radius: 500px;
    transition: all 0.3s ease;
} 
.namm{
    font-size: 10px;
    max-width: 100px;
    word-wrap: break-word;
    white-space: normal;
    margin-bottom: 5px;
}
.pospos{
    font-size: 15px;
    max-width: 100px;
    word-wrap: break-word;
    white-space: normal;
    text-align: center;
}
.namm{
    font-size: 15px;
}
#add-post-button{
    font-size: 30px;
    border-radius: 200px;
}
#add-div{
    position: fixed;
    bottom: 15%;
    top: 76%;
    right: 2%;
}
#rap{
    position: fixed;
    display: none;
    top: 15%;
    max-width: 23rem ;
    background-color: #258d46;
    border-radius: 20px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
}
#atalho-but{
    font-size: 30px;
    min-width: 40px;
    max-width: 100px;
    height: 3.7rem;
    background-color: #5e95ec;
    cursor: pointer;
    margin: 5px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
}
#atalhos{
    position: fixed;
    display: none;
    top: 1%;
    right: 1%
}
.conjunto{
    margin: 10px;
    border-radius: 10px;
    border-width: 3.5px;
    display: flex; /* Espaçamento entre os botões */
    justify-content: space-between; /* Centraliza os botões */
    flex-wrap: wrap;
    text-align: center
}
.but{
    font-size: 23px;
    min-width: 60px;
    max-width: 60px;
    height: 3.8rem;
    background: linear-gradient(135deg, #6271b2, #071354);
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
}
#add-post-form{
    z-index: 100;
}
@media (min-width: 450px) {
    #app-screen {
        max-width: 25rem;
    }
    #aihh{
        max-width: 25rem;
    }
    #add-div {
        position: fixed;
        left: calc(50% + 130px); /* Metade da tela menos 30px */
        bottom: 10%; /* Ajuste conforme necessário */
        z-index: 1000; /* Garante que fique acima de outros elementos */
        display: flex; /* Evita deformação */
        justify-content: center; /* Centraliza dentro do container */
    }
    #add-post-button {
        background-color: #2e774d;
        color: white;
        padding: 12px 24px;
        border-radius: 250px;
        font-size: 30px;
        cursor: pointer;
        max-width: 200px; /* Mantém um tamanho máximo para evitar deformação */
        width: auto; /* Garante que o tamanho se ajuste ao conteúdo */
        transition: background-color 0.3s ease;
        text-align: center;
        white-space: nowrap; /* Evita quebra de linha dentro do botão */
    }
    #atalhos{
        right: calc(50% - 180px);
    }
}
.subtit2{
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    
}
.but2{
    font-size: 12px;
    width: 43%;
    height: 5rem;
    background: linear-gradient(135deg, #768a4b, #297a08);
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    box-shadow: 0 12px 14px rgba(0, 0, 0, 0.3);
    text-align: center;
    border-radius: 50px;
    max-width: 150px;
}
.sepa{
    margin: 10px;
    border-radius: 15px;
    justify-content: space-around;
    text-align: center;
}
.area{
    background-color: #143f72;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.5);/* Espaçamento entre os botões */
    justify-content: space-between; /* Centraliza os botões */
    max-width: 100%;
    
}
.tit{
    font-size: 20px;
    color: rgb(255, 255, 255);
    
}
.sipa{
    border-radius: 20px;
    border-width: 2px;
    padding: 10px;
    margin: 5px;
}
#outros{
    background-color: #4c87d0;
    padding: 5px;
    border-radius: 10px;
    max-width: 100%;
}
#outros:not([open]){
    max-width: 60%;
}
#chats{
    position: fixed;
    display: none;
    bottom: 15%;
    max-width: 23rem ;
    border-radius: 20px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    width: 100%;
    background-color: #4c87d0;
}
.cont-div{
    position: fixed;
    left: center;
    top: 15%;
    max-width: 23rem ;
    width: 100%;
    background-color: #0056b3;
    margin: 5px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.2);
    border-radius: 25px;  
    max-height: 450px;
    overflow-y: auto;
    text-align: center;
}
#duvida{
    width: 80%;
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 13px;
}
#duvida-resposta{
    padding: 5px;
}
.close-btn {
    background-color: #ff4b5c; /* Cor de fundo vermelho para o botão fechar */
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    text-align: center;
    margin: 10px;
    font-size: 18px;
    position: fixed;
    right: calc(50% + 80px);
    top: 16%;
}
.subtit2{
    font-size: 20px;
    color: #ffffff;
    text-align: center;
    margin: 15px;
}
#per-container{
    height: 700px;
    text-align: center;
}
#texto{
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 13px;
    height: 200px;
}
#resposta{
    font-size: 15px;
}
#pergunta-button{
    font-size: 16px;
    background-color: #27ae60;
}
@media (width <= 370px){
    .butttt{
        width: 50px;
        height: 50px;
        font-size: 15px;
    }
}
#duvida-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
.butttt{
    width: 100%;
    width: 60px;
}
@media (width <= 370px){
    .butttt{
        width: 50px;
        height: 50px;
        font-size: 15px;
    }
    .namm{
        font-size: 12px;
    }
    #search-bar{
        width: 60%;
    }
    #search-button{
        width: 30%;
        font-size: 10px;
    }
    .back{
        font-size: 16px;
    }
    #add-post-button{
        font-size: 25px;
        width: 60px;
    }
    #add-div{
        top: 78%;
        
    }
    .nam1{
        font-size: 10px
    }
    .but{
        width: 56px;
        height: 56px;
        font-size: 18px;
    }
    h1{
        font-size: 20px;
    }
    .post button{
        font-size: 12px;
    }
    #atalho-but{
        font-size: 25px;
        width: 50px;
        height: 3.3rem;
    }
    .post p{
        font-size: 13px;
    }
    .post h2{
        font-size: 18px;
    }
    .close-btn {
        font-size: 15px;
    }
}
@media (width <= 330px){
    .namm{
        font-size: 10px;
    }
    .butttt{
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    .back{
        font-size: 14px;
    }
    #add-post-button{
        font-size: 20px;
        width: 55px;
    }
    #add-div{
        top: 80%;
        
    }
    .but{
        width: 52px;
        height: 52px;
        font-size: 15px;
    }
    .post button{
        font-size: 10px;
    }
    #atalho-but{
        font-size: 20px;
        width: 45px;
        height: 3rem;
    }
    .post p{
        font-size: 10px;
    }
    .post h2{
        font-size: 16px;
    }
    .close-btn {
        left: 5%;
        right: auto;
        font-size: 13px;
    }
}
#resumo-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#texto-base{
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 13px;
    height: 200px;
}
#citar-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#duvida-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#termo-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#termo{
    width: 80%;
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 10px;
}
#copiar-resumo-button{
    font-size: 16px;
    background-color: #27ae60;
}
#copiar-citar-button{
    font-size: 16px;
    background-color: #27ae60;
}
#texto{
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 13px;
    height: 200px;
}
#apoio-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#apoio{
    margin: 10px;
}
.nam1{
    font-size: 15px;
    max-width: 80px;
    word-wrap: break-word;
    white-space: normal;
}
#add-post-form{
    z-index: 0;
}
#tema-projeto{
    width: 80%;
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 10px;
}
#projeto-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#copiar-projeto-button{
    font-size: 16px;
    background-color: #27ae60;
}
#ideia-projeto{
    overflow-y: auto;
    margin: 15px;
}
#debate-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#tema-debate{
    overflow-y: auto;
    margin: 15px;
}
.but{
    margin: 7px;
}
#assunto-historia{
    width: 80%;
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 10px;
}
#historia-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#historia{
    overflow-y: auto;
    margin: 15px;
}
#assunto{
    width: 80%;
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 10px;
}
#recomendacao-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#recomendacao{
    overflow-y: auto;
    margin: 15px;
}
#debate-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#tema-debate{
    overflow-y: auto;
    margin: 15px;
}

#assunto-historia{
    width: 80%;
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 10px;
}
#historia-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#historia{
    overflow-y: auto;
    margin: 15px;
}
#assunto{
    width: 80%;
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 10px;
}
#recomendacao-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#recomendacao{
    overflow-y: auto;
    margin: 15px;
}









.but{
    margin: 3px;
}
#ia{
    padding-top: 22px;
    position: fixed;
    display: none;
    top: 16.5%;
    max-width: 23rem ;
    background-color: #258d46;
    border-radius: 20px;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
}
#descricao{
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 13px;
    height: 200px;
}
#tecnica-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#copiar-tecnica-button{
    font-size: 16px;
    background-color: #27ae60;
}
#tecnica{
    margin: 15px;
}
#habilidades{
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 13px;
    height: 200px;
}
#conselho-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#conselho{
    margin: 15px;
}
#horarios{
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 13px;
    height: 200px;
}
#rotina-button{
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
#copiar-rotina-button{
    font-size: 16px;
    background-color: #27ae60;
}
#rotina{
    margin: 15px;
}
.butia{
    font-size: 23px;
    width: 60px;
    height: 3.8rem;
    background: linear-gradient(45deg,#10458b, #539fc4, #10458b);
    cursor: pointer;
    box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    margin: 7px;
}

#start-game-button {
    font-size: 16px;
    background-color: #27ae60;
    margin-bottom: 10px;
}
/* Estilo para o container de opções */
#options {
    display: flex;
    flex-direction: column; /* Organiza os botões verticalmente */
    gap: 5px; /* Espaçamento entre os botões */
    text-align: center;
    justify-content: center;
    align-items: center;
}

/* Estilo para os botões de opções */
#options button {
    font-size: 16px;
    background-color: #1a8647;
    margin-bottom: 10px;
    max-width: 80%;
}
#game-theme{
    width: 60%;
    padding: 5px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #555;
    background-color: #333;
    color: #fff;
    font-size: 12px;
}
#play-again-button{
    font-size: 16px;
    background-color: #ab7a12;
    margin: 10px;
    max-width: 80%;
}
#continue-button{
    font-size: 16px;
    background-color: #ab7a12;
    margin: 10px;
    max-width: 80%;
}
#gam-container{
    max-height: 550px;
}