@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700");
@import url("https://fonts.googleapis.com/css?family=Roboto:400,300,500,700");
/*
 *
 *   Gaia web
 *   version 1.0
 *
*/

html, body {
  background:#f7f7f7;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Previne rolagem horizontal indesejada */
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  overflow-x: hidden;
}
.top-bar {
  background: #000000;
  color: #fff;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  z-index: 1000;
}
.icon-help {
position: absolute;
right: 10px; /* Ajuste conforme necessário */
top: 50%;
transform: translateY(-50%);
color: white; /* Ou outra cor conforme o design */
font-size: 24px; /* Ajuste o tamanho conforme necessário */
}

.top-bar-logo {
display: block;
margin: 0 auto; /* Centraliza a imagem */
height: 40px; /* Ajuste o tamanho conforme necessário */
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
.menu-toggle {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 30px;
  width: 35px;
}
.menu-toggle span {
  display: block;
  height: 31px;
  background: #fff111;
  margin: 5px 0;
  transition: background 0.3s ease;
}
.menu-toggle:hover span {
  background: #f0f0f0;
}
.sidebar-header {
  padding: 15px;
  background-color: #000000; /* Cor de fundo do cabeçalho do menu lateral */
  color: white; /* Cor do texto */
  text-align: left; /* Centraliza o texto */
}
.sidebar-logo {
  width: 20%; /* Largura total do cabeçalho */
  margin-bottom: 0px; /* Espaço abaixo da imagem */
  
}

.menu_aluno {
  font-size: small;
  font-weight: bold;
}

.menu_matricula{
  font-size: smaller;
}

.sidebar {
  width: 210px;
  position: fixed;
  top: 50px;
  bottom: 0;
  left: -250px;
  overflow-y: auto; 
  background: #f5f5f5;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  padding: 0px;
  transition: left 0.3s ease;
  z-index: 1003;
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 15px;
  border-bottom: 1px solid #ddd; /* Linha separadora */
}

.sidebar ul li a {
  text-decoration: none;
  color: #333;
  display: block;
}

.sidebar ul li i {
  margin-right: 10px; /* Espaço entre o ícone e o texto */
}

.sidebar.visible {
  left: 0;
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.overlay.active {
  display: block;
}

/* Estilos para o botão flutuante */
.floating-action-button {
position: fixed;
bottom: 20px;
right: 20px;
width: 60px;
height: 60px;
background-color: #98CA48; /* Cor azul do botão */
color: white;
border-radius: 50%;
text-align: center;
line-height: 55px; /* Centraliza o + verticalmente */
font-size: 45px; /* Tamanho do + */
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.26);
cursor: pointer;
z-index: 1002; /* Garante que o botão fique acima de outros elementos */
}

.floating-action-button:hover {
background-color: #000000; /* Cor um pouco mais escura para o hover */
}

.floating-action-button span {
display: inline-block;
vertical-align: middle;
}
.menu-toggle span,
.floating-action-button span {
  display: none; /* Esconde o texto '+' quando o Font Awesome for usado */
}
.floating-action-button i {
  font-size: 24px; /* Ajuste o tamanho do ícone conforme necessário */
  vertical-align: middle;
}


/*Loader*/
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2); /* Opcional: cor de fundo semitransparente */
}
.loader {
  border: 4px solid #f3f3f3;
  border-radius: 50%;
  border-top: 4px solid #000000;
  ;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*login*/

.form-login input {
  width: 80%;
  padding: 10px;
  font-size: 16px; 
  border: 1px solid #ccc;
}

.login-button {
  width: 90%;
  padding: 10px;
  border: none;
  background-color: #98CA48; /* Cor do botão */
  color: #fff;
  font-size: 16px;
  margin-top: 20px;
}

/*home*/

.card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  margin: 10px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.card-title {
  color: #98CA48;  
  font-size: 16px;
  font-weight: bold; 
  text-align: left;
}

.card-content {
  padding-top: 15px;
}

.card-detail {
  font-size: 0.9em;
  margin: 5px 0;
  color: #333;
}

.card-detail i {
  margin-right: 10px;
  color: #666;
  text-align: left;
}

.card-bottom {
  border-top: 1px solid #eee;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
}

.card-date {
 text-align: left;
  font-size: 1.0em;
  color: #666;
}
 
.card-time {
  text-align: right;
  font-size: 1.0em;
  color: #666;
}

.view-all {
  background-color: #000000;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 0.9em;
  margin: 10px 20px;
  cursor: pointer;
}

/*Página Info*/
.header-image-info {
  width: 100%; /* Garante que a imagem ocupe 100% da largura do contêiner */
  height: 30vh; /* 30% da altura da viewport */
  display: block;
  object-fit: cover; /* Garante que a imagem cubra o espaço disponível sem distorcer */
}

.info_title {
  color: grey;
  font-size: 16px;
}
.info_text {
  color: grey;
  
}

.space {
  padding-top: 10px;
}

.custom-link {
  text-decoration: none; /* Remove o sublinhado */
  color: inherit; /* A cor do link será a mesma do texto ao redor */
}

/*Página Password*/
.back-button {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
}

/*Página Atividade*/

.topo{        
  padding: 40px;
  font-size: 35px;
  color: white;
  background: #000000;
}

.texto-desc {
  text-align: justify;
}

.mural_text {
  color: grey;
}
.files {
border-top: 1px #cccccc solid;
padding: 10px;
} 
.files_last {
border-top: 1px #cccccc solid;
} 


.info-message {
    margin: 20px;
    color: #000; /* Substitua pela cor de texto apropriada */
    font-size: 20px;
}

.info-message i {
    margin-bottom: 10px;
}

.form label {
    display: block;
    margin: 10px 0;
}

.form input[type=password] {
    width: calc(100% - 40px);
    padding: 10px;
    
    border: 1px solid #ccc;
}



.error-message {
  color: red;
  font-size: 18px;
  padding: 10px;
  font-weight: bold;
}
.ok-message {
  color: green;
  font-size: 18px;
  padding: 10px;
  font-weight: bold;
}

/* Justificativa */

.chat-container {
}

.message-container{
  padding:15px 10px 10px 10px;
}

.message {
  padding: 10px;
  border-radius: 10px;
  background-color: #ebebeb;
}

.sent {
  text-align: right;
}

.chat-footer {
  display: flex;
  padding:15px 10px 10px 10px;
}

.chat-footer input {
  flex-grow: 1;
  padding: 5px;
  margin-right: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.input-thread {
  font-size: 16px;
}

/* Eventos: Agenda */

.data-evento {
  position: absolute;
  right: 10px; /* Ajuste conforme necessário */
  }

  .texto-mes {
      text-transform: uppercase;
      cursor: pointer;
  }

  .evento_title {
    color: #2882D8;  
    font-size: 18px;
    font-weight: 500; 
}
.evento_text {
    color: grey;
}
.files {
  border-top: 1px #cccccc solid;
  padding: 10px;
} 
.files_last {
  border-top: 1px #cccccc solid;
} 

.evento-link {
  color: #000000;
  text-decoration: none;
}

/* Simulados */

.sim-title {
  font-size: 20px;
}
.sim-dados {
  padding: 0px 0px 10px 10px;
}

.table-simulado {
  border-collapse: collapse; /* Colapsa as bordas da tabela para que não haja espaço entre elas */
  width: 100%;
}

.table-simulado th, td {
  text-align: left;
  width: 33.33%; 
  padding-top: 10px;
}

.table-border-none {
  border: none; /* Remove as bordas da tabela e das células */
}

/* Redações: Atualidades */

.news {
  padding: 2px;
  border-bottom: 1px #cccccc solid;
  border-top: 1px #cccccc solid;
  background: white;
  margin-top: 10px;
}

.news_title {
    color: #000000;  
    font-size: 18px;
    font-weight: 600; 
}
.news_text {
    color: grey;   
}

/* Pesquisas */

.pesquisa-respondida {
  position: absolute;
  right: 10px; /* Ajuste conforme necessário */
  font-size: 22px;
  }

  .input-pesquisa {
    width: 90%;
    padding: 10px;
    font-size: 16px; 
    border: 1px solid #ccc;
  }

  .table-pesquisa {
    border-collapse: collapse; /* Colapsa as bordas da tabela para que não haja espaço entre elas */
    width: 100%;
  }
  
  .td-nome {
    text-align: left;
    width: 40%; 
    padding-top: 10px;
  }
  
  .td-radio {
    text-align: center;
    width: 10%; 
    padding-top: 10px;
  }

 