@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Manrope:wght@200..800&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --font-primary: "Manrope", serif;
  --font-secondary: "Red Hat Display", serif;
  --font-third: "Jost", serif;
  --color-join: #123963;
  --color-join-2: #1f2c53;
  --background: #d2dbe3;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-secondary);
}

body,
html {
  background-color: var(--background);
}

/* ==== CHECKLIST ====== */

.main-content>.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background-color: #123963;
  border-radius: 8px;
  margin: 10px auto 20px auto;
  color: #fff;
  max-width: 1000px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-content>.header h1 {
  font-size: 1.2rem;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.main-content>.header p {
  font-size: 0.9rem;
  margin: 0;
  color: #ffffff;
}

.main-content>.header .btn-add {
  background-color: #28a745;
  color: #fff;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.main-content>.header .btn-add:hover {
  background-color: #218838;
}

@media (max-width: 768px) {
  .main-content>.header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    max-width: 95%;
  }

  .main-content>.header h1 {
    font-size: 1rem;
  }

  .main-content>.header p {
    font-size: 0.8rem;
    margin-top: 5px;
  }

  .main-content>.header .btn-add {
    align-self: flex-start;
    margin-top: 10px;
  }
}


.container-4 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 8px;
  max-height: 80vh;
  height: 70vh;
  display: flex;
  flex-direction: column;
  overflow: auto;
  gap: 5px;
}

.container-4 .card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container-4 .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.container-4 .card-header span:first-child {
  font-size: 1.2rem;
  font-weight: 500;
  color: #123963;
  word-break: break-word;
}

.container-4 .card-header span:last-child {
  background-color: #ffc107;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 400;
  text-transform: uppercase;
  min-width: 120px;
  text-align: center;
}

.container-4 .card-header span.concluido {
  background-color: #28a745;
}

.container-4 .card-content {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  text-align: justify;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.container-4 .card-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.container-4 .btn-edit,
.container-4 .btn-status {
  padding: 10px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-weight: 400;
  transition: background-color 0.3s ease;
}

.container-4 .btn-edit {
  background-color: #007bff;
  color: #ffffff;
}

.container-4 .btn-edit:hover {
  background-color: #0056b3;
}

.container-4 .btn-status {
  background-color: #607D8B;
  color: #ffffff;
}

.container-4 .btn-status:hover {
  background-color: #9E9E9E;
}

.container-4 .card-content input {
  width: 100%;
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f4f6f9;
  border-radius: 5px;
  color: #333;
  outline: none;
  margin-top: 10px;
  resize: none;
}

.container-4 .card-content input:focus {
  border-color: #007bff;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.2);
}

@media (max-width: 768px) {
  .container-4 {
    gap: 10px;
    padding: 10px;
  }

  .container-4 .card {
    padding: 15px;
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .container-4 .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .container-4 .card-content {
    font-size: 0.9rem;
  }

  .container-4 .btn-edit,
  .container-4 .btn-status {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
}

.container-4 .status {
  font-size: 1rem;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  min-width: 120px;
}

.container-4 .status.aguardando {
  background-color: #ffc107;
  color: #fff;
}

.container-4 .status.concluido {
  background-color: #28a745;
  color: #fff;
}


.swal2-popup {
  z-index: 9999;
}

/* CabeÃƒÂ§alho Principal */
.checklist-header {
  background-color: var(--color-join);
  color: #fff;
  padding: 20px 30px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  /* Centraliza o conteÃƒÂºdo principal */
  align-items: center;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* border-radius: 8px; */
}

/* ConteÃƒÂºdo Centralizado */
.title-container {
  text-align: center;
}

.title-container h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.title-container .checklist-date {
  font-size: 1.2rem;
  color: #cce0ff;
  margin-top: 5px;
}

/* Grupo Alinhado ÃƒÂ  Direita */
.user-group {
  position: absolute;
  right: 30px;
  /* Alinha ao canto direito */
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 1.1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.user-group .group-icon {
  font-size: 1rem;
  color: #fff;
}


/* ===== FIM ====== */


/* ==== DASHBOARD === */

/* CabeÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§alho do Dashboard */
.dashboard-header h1 {
  font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 5px;
  font-weight: 600;
}

.dashboard-header p {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 30px;
}

.dashboard-cards {
  display: flex;
  gap: 30px;

  justify-content: center;
  flex-wrap: wrap;
}

/* Estilo dos Cards */
.dashboard-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  max-width: 400px;
  min-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative; 
}

.dashboard-card::before {
  content: '';
  position: absolute;
  left: 0; 
  top: 25%; 
  height: 50%; 
  width: 5px; 
  background-color: var(--color-join); 
  border-radius: 0 4px 4px 0; 
}



.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  /* Sombra ao passar o mouse */
}

/* ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âcones nos Cards */
.card-icon {
  background-color: #eaf6ff;
  /* Azul claro */
  color: var(--color-join);
  padding: 20px;
  border-radius: 20%;
  font-size: 2rem;
}

/* InformaÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµes dos Cards */
.card-info h3 {
  font-size: 1.4rem;
  color: #2c3e50;  margin-bottom: 8px;
  font-weight: 500;
}

.card-info p {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-join);
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .dashboard-cards {
    flex-direction: column;
    align-items: center;
  }

  .dashboard-card {
    width: 90%;
  }
}


/* ==== FIM ======= */

/* Container principal */
.edit-container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 20px auto;
}

/* Estilo dos campos */
.edit-container label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.edit-container input,
.edit-container select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

/* BotÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµes */
.edit-container button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  /* BotÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£o ocupa toda a largura */
  text-align: center;
}

.edit-container button:hover {
  background-color: #218838;
}

/* Mensagem de erro */
.error-message {
  color: red;
  background: #ffe6e6;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
  text-align: center;
}

/* CabeÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§alho do container */
.edit-container h1 {
  text-align: center;
  color: #0056b3;
  margin-bottom: 20px;
}


/* ==== SIDEBAR ==== */
:root {
  --color-primary: #004080;
  --color-hover: #003d80;
  --color-active: #00b894;
  --color-text: white;
  --color-icon: white;
  --color-active-bg: rgba(0, 184, 148, 0.2);
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background-color: var(--color-join);
  color: var(--color-text);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  z-index: 1000;
  transition: width 0.3s ease;
  overflow: hidden;
}

.sidebar.collapsed {
  width: 70px;
}

.sidebar-header {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sidebar-logo {
  width: 50px;
  transition: width 0.3s ease;
}

.sidebar-title {
  font-size: 1.2rem;
  color: var(--color-text);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.sidebar.collapsed .sidebar-title {
  opacity: 0;
  pointer-events: none;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
}

.sidebar-menu li {
  margin: 15px 0;
}

.menu-item {
  text-decoration: none;
  font-size: 1rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 5px;
  transition: color 0.3s ease, background-color 0.3s ease, border-left-width 0.3s ease;
}

.menu-item:hover {
  background-color: var(--color-hover);
  color: var(--color-text);
}

.menu-item.active {
  border-left: 3px solid #fff;
  /* Aumentado de 4px para 6px */
  background-color: var(--color-active-bg);
  color: #fff;
}

.sidebar-menu i {
  font-size: 1.2rem;
}

.sidebar.collapsed .menu-item {
  justify-content: center;
}

.sidebar.collapsed .menu-item span {
  display: none;
}

/* TransiÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£o do conteÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âºdo principal */
.main-content {
  margin-left: 250px;
  transition: margin-left 0.3s ease;
  background: #d2dbe3;
}

.sidebar.collapsed~.main-content {
  margin-left: 70px;
}


/* Submenu bÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¡sico */
.submenu {
  display: none;
  margin-left: 20px;
  list-style: none;
}

.menu-item-container:hover>.submenu {
  display: block;
}

.menu-item {
  font-size: 1rem;
  padding: 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
  transition: color 0.3s ease;
}

/* Remover ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â­cone de dropdown */
.dropdown-icon {
  display: none;
}

/* Submenu */
.submenu .menu-item {
  font-size: 0.9rem;
  padding: 5px 10px;
  color: var(--color-text);
  display: flex;
  align-items: center;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.submenu .menu-item i {
  font-size: 1rem;
  margin-right: 8px;
}


/* === FIM ===== */

/* Estilo do container principal */
.user-container {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Tabela */
.user-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.user-table th,
.user-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.user-table th {
  background-color: #0056b3;
  color: white;
  font-size: 1rem;
}

.user-table tbody tr:hover {
  background-color: #f9f9f9;
}

.user-table tbody tr td:first-child {
  font-weight: bold;
  color: #333;
}

/* Badges de PermissÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â£o */
.badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 20px;
  color: white;
  text-transform: capitalize;
}

.badge.admin {
  background-color: #ff5733;
}

.badge.dev {
  background-color: #28a745;
}

.badge.user {
  background-color: #007bff;
}

/* BotÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Âµes */
.btn {
  text-decoration: none;
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
  color: white;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn.edit {
  background-color: #28a745;
}

.btn.edit:hover {
  background-color: #218838;
}

.btn.delete {
  background-color: #dc3545;
  margin-left: 5px;
}

.btn.delete:hover {
  background-color: #c82333;
}

.btn.disabled {
  background-color: #6c757d;
  pointer-events: none;
}


h1 {
  text-align: center;
  font-size: 2rem;
  color: var(--color-join);
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.card .number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #007bff;
}

.card .content h2 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.card .content p {
  color: #666;
  font-size: 0.95rem;
}

/* ========= TASK =========== */
.container-2 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.container-2 .search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.container-2 .search-bar .input-container {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 200px;
}

.container-2 .search-bar .input-container i {
  font-size: 16px;
  color: #6c757d;
  margin-right: 10px;
}

.container-2 .search-bar .input-container input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  background-color: transparent;
}

.container-2 .search-bar .input-container input::placeholder {
  color: #aaa;
}

.container-2 .search-bar .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  background-color: #007bff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container-2 .search-bar .btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.container-2 .task-board {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  height: calc(100% - 80px);
  overflow: hidden;
}

.container-2 .task-column {
  flex: 1;
  background-color: #f8f9fa;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  max-height: calc(80vh - 80px);
}

.container-2 .task-column::-webkit-scrollbar {
  width: 6px;
}

.container-2 .task-column::-webkit-scrollbar-thumb {
  background-color: #a99d9d;
  border-radius: 5px;
}

.container-2 .task-column[data-status="Não iniciado"] {
  background-color: #ff6f61;
  /* Vermelho claro */
}

.container-2 .task-column[data-status="Em andamento"] {
  background-color: #ffc107;
  /* Amarelo */
}

.container-2 .task-column[data-status="Concluído"] {
  background-color: #28a745;
  /* Verde */
}


.task-column[data-status="Não iniciado"] .task-count {
  background-color: #ff6f61;
  /* Vermelho claro */
}

.task-column[data-status="Em andamento"] .task-count {
  background-color: #ffc107;
  /* Amarelo */
}

.task-column[data-status="Concluído"] .task-count {
  background-color: #28a745;
  /* Verde */
}



.column-title {
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.task-count {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #4285f4;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  line-height: 30px;
  margin-left: 10px;
}

.container-2 .column-title {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  padding: 10px 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: sticky;
  top: 0;
  color: var(--color-join);
}



.container-2 .task-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin: 7px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.container-2 .task-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.container-2 .task-card .task-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-join);
  margin: 0;
}

.container-2 .task-card .task-desc {
  font-size: 14px;
  color: #555;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  background-color: #f8f9fa;
  font-style: italic;
}

.container-2 .task-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #555;
}

.container-2 .task-actions {
  display: flex;
  gap: 8px;
}

.container-2 .task-actions i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 30%;
  background-color: #f8f9fa;
  color: #007bff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container-2 .task-actions i:hover {
  background-color: #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container-2 .task-actions .fa-edit {
  background-color: #ffffff;
  color: #13793c;
}

.container-2 .task-actions .fa-edit:hover {
  background-color: #ffffff;
}

.container-2 .task-actions .fa-trash {
  background-color: #ffffff;
  color: #ff0000;
}


.container-2 .no-results {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 8px;
  color: #888;
  font-size: 14px;
  font-style: italic;
  gap: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container-2 .no-results i {
  color: #ffc107;
  font-size: 18px;
}

@media (max-width: 768px) {
  .container-2 {
    max-width: 95%;
    padding: 15px;
    max-height: 70vh;
  }

  .container-2 .task-board {
    flex-direction: column;
    gap: 15px;
  }

  .container-2 .column-title {
    font-size: 16px;
  }

  .container-2 .task-card {
    padding: 8px;
  }
}

/* === DRAWER COMENTARIOS === */
.drawer {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 400px;
  height: calc(100% - 60px);
  background-color: #f9f9f9;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border-left: 2px solid #d2dbe3;
  border-radius: 1rem;
  opacity: 0;
  /* Inicialmente invisível */
}

.drawer.active {
  right: 0;
  opacity: 1;
  /* Visível quando ativo */
}

.drawer-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  overflow: hidden;
}


.comments-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px 0;
  max-height: calc(100% - 140px);
  scrollbar-width: thin;
  scrollbar-color: #ccc #f9f9f9;
}

.comments-container::-webkit-scrollbar {
  width: 8px;
}

.comments-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}

.comments-container::-webkit-scrollbar-track {
  background-color: #f9f9f9;
}

.comment-item {
  background-color: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 10px;
  align-items: flex-start;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
}

.comment-icon {
  width: 30px;
  height: 30px;
  background-color: var(--color-join);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}

.comment-user {
  font-weight: bold;
  font-size: 14px;
  color: var(--color-join);
}

.comment-date {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

.comment-text {
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin-top: 5px;
  background-color: #f7f7f7;
}

.comenth2 {
  text-align: center;
  color: var(--color-join);
}

textarea {
  width: calc(100% - 10px);
  min-height: 60px;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  resize: none;
}

.addcoment {
  margin-right: 10px;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.closecoment {
  background-color: #f5f5f5;
  color: #555;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.closecoment:hover {
  background-color: #e0e0e0;
  color: #333;
  border-color: #ccc;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.closecoment:active {
  background-color: #d6d6d6;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transform: scale(0.98);
}


.addcoment:first-of-type {
  background-color: #007bff;
  color: white;
}

.addcoment:last-of-type {
  background-color: #e0e0e0;
  color: #333;
}

.comment-icon-container {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.comment-icon:hover {
  color: #007bff;
}

.comment-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4500;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  padding: 2px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
}

/* ======= FIM  ========== */
/* ======= USUARIOS ========== */
.container-3 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.container-3 .header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.container-3 .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  background-color: #007bff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 200px;
}

.container-3 .btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.container-3 .btn:active {
  transform: translateY(0);
}

.container-3 .search-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 10px 15px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.container-3 .search-wrapper input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 8px;
  margin-left: 10px;
  background-color: transparent;
}

.container-3 .search-wrapper i {
  font-size: 18px;
  color: var(--color-join);
}

.container-3 .table-wrapper {
  flex: 1;
  overflow-y: auto;
  border-radius: 8px;
}

.container-3 .table-wrapper::-webkit-scrollbar {
  width: 8px;
}

.container-3 .table-wrapper::-webkit-scrollbar-thumb {
  background-color: #007bff;
  border-radius: 8px;
}

.container-3 .table-wrapper::-webkit-scrollbar-thumb:hover {
  background-color: #0056b3;
}

.container-3 .user-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  border-radius: 8px;
}

.container-3 .user-table th,
.container-3 .user-table td {
  padding: 12px;
  text-align: left;
  font-size: 14px;
}

.container-3 .user-table th {
  background-color: var(--color-join);
  color: #fff;
  text-transform: uppercase;
}

.container-3 .user-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.container-3 .user-table tr:hover {
  background-color: #f1f1f1;
}

.container-3 .actions i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  border-radius: 30%;
  background-color: #f8f9fa;
  color: #007bff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
  /* Adiciona espaÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â§o ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â  direita */
}

.container-3 .actions .fa-edit {
  background-color: #ffffff;
  color: #2cc710;
}

.container-3 .actions .fa-trash {
  background-color: #ffffff;
  color: #d21616;
}



.container-3 .actions i:active {
  transform: scale(0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .container-3 {
    max-width: 95%;
    padding: 15px;
    max-height: 70vh;
  }

  .container-3 .btn {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 12px;
  }

  .container-3 .user-table th,
  .container-3 .user-table td {
    font-size: 12px;
    padding: 8px;
  }
}

/* ======== FIM ============== */
/* ======== MODAIS ============== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  width: 700px;
  max-width: 95%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideDown 0.3s ease;
}

.modal-content h2 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #123963;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}

.modal-content input,
.modal-content textarea,
.modal-content select {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1.1rem;
  color: #333;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: none;
}

.modal-content input:focus,
.modal-content textarea:focus,
.modal-content select:focus {
  border-color: #007bff;
  box-shadow: 0px 0px 10px rgba(0, 123, 255, 0.4);
  outline: none;
}

.modal-content textarea {
  min-height: 150px;
  line-height: 1.5;
}

.modal-content button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 8px;
  /* font-size: 1.2rem; */
  font-weight: 500;
  cursor: pointer;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.modal-content button:first-of-type {
  background-color: #28a745;
  color: white;
}

.modal-content button:first-of-type:hover {
  background-color: #218838;
}

.modal-content button.close-btn {
  background-color: #dc3545;
  color: white;
}

.modal-content button.close-btn:hover {
  background-color: #c82333;
}

.modal-content select {
  appearance: none;
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  color: #555;
}

@keyframes slideDown {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ======== FIM ============== */
/* ==== DTEMPLATES/INDEX ===== */
.container-5 {
  max-width: 1000px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-height: 80vh;
  height: 80vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.container-5 .form-group {
  margin-bottom: 20px;
}

.container-5 .form-group label {
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  color: #123963;
}

.container-5 .form-group input,
.container-5 .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.container-5 .form-group input:focus,
.container-5 .form-group textarea:focus {
  border-color: #007bff;
  box-shadow: 0px 0px 10px rgba(0, 123, 255, 0.4);
  outline: none;
}

.container-5 .form-group textarea {
  height: 150px;
  resize: none;
  /* Remove o redimensionamento */
}

.container-5 .btn {
  display: inline-block;
  background: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.container-5 .btn:hover {
  background: #0056b3;
}

.container-5 .toast {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #28a745;
  color: white;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 16px;
  animation: fadeIn 0.5s ease;
}

.container-5 .toast a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}

.container-5 .toast button {
  background: transparent;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.container-5 .error-message {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 5px;
  padding: 10px;
  margin-top: 20px;
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======== FIM ============== */
/* === DTEMPLATES/PROPOSALS === */
.template-page .container-7 {
  max-width: 1200px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
}

.template-page .template-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.template-page .template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.template-page .template-header {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.template-page .template-id {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.template-page .template-date {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.template-page .template-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.template-page .btn {
  border: none;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.template-page .btn-preview {
  background: #007bff;
  color: white;
}

.template-page .btn-preview:hover {
  background: #0056b3;
}

.template-page .btn-copy {
  background: #28a745;
  color: white;
}

.template-page .btn-copy:hover {
  background: #1e7e34;
}

.template-page .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.template-page .modal.active {
  display: flex;
}

.template-page .modal-content-1 {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow: auto;
  position: relative;
}

.template-page .modal-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: sticky;
  top: 0;
  background: #f8f9fa;
  padding: 10px;
  z-index: 10;
  border-bottom: 1px solid #ddd;
  border-radius: 12px 12px 0 0;
}

.template-page .modal-content-1 .modal-header .modal-icon.print {
  border: none;
  background: #ffffff;
  cursor: pointer;
  font-size: 20px;
  padding: 10px 12px;
  margin-right: 15px;
  transition: all 0.3s ease;
  color: var(--color-join);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.template-page .modal-content-1 .modal-header .modal-icon.print:hover {
  background: #28a745;
  color: #ffffff;
  transform: scale(1.1);
}

.template-page .modal-content-1 .modal-header .modal-icon.close {
  border: none;
  background: #ffffff;
  cursor: pointer;
  font-size: 20px;
  padding: 10px 15px;
  transition: all 0.3s ease;
  margin-right: 15px;
  color: var(--color-join);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.template-page .modal-content-1 .modal-header .modal-icon.close:hover {
  background: #dc3545;
  color: #ffffff;
  transform: scale(1.1);
}


.template-page .toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #28a745;
  color: white;
  padding: 15px;
  border-radius: 5px;
  display: none;
  z-index: 1000;
  animation: fadeInOut 3s ease forwards;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  10%,
  90% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.template-page .search-container {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  align-items: center;
  position: relative;
}

.template-page .search-input {
  width: 100%;
  padding: 12px 15px 12px 40px;
  border: 1px solid #007bff;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  background: #f8f9fa;
  color: #333;
  transition: border-color 0.3s ease;
}

.template-page .search-input:focus {
  border-color: #0056b3;
  box-shadow: none;
}

.template-page .search-input::placeholder {
  color: #aaa;
  font-style: italic;
}

.template-page .search-icon {
  position: absolute;
  left: 15px;
  color: #007bff;
  font-size: 20px;
  pointer-events: none;
  transition: color 0.3s ease;
}

.template-page .search-input:focus~.search-icon {
  color: #0056b3;
}

.template-page #no-results-message {
  display: none;
  text-align: center;
  color: #333;
  font-size: 1.2rem;
  padding: 15px 30px;
  background-color: transparent;
  border-radius: 8px;
  margin-top: 2%;
  position: absolute;
  top: 20%;
  left: 52%;
  transform: translate(-50%, -50%);
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
}

/* ======== FIM ============== */
/* === TEMPLATE NÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã‚Â ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÂ¢Ã¢â‚¬Å¾Ã‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¾Ãƒâ€šÃ‚Â¢O ENCONTRADO === */
.main-error-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: var(--color-join-2);
  padding: 20px;
  box-sizing: border-box;
}

.error-container {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
  animation: fadeIn 0.8s ease-in-out;
}

.error-container .logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 50px;
  height: auto;
}

.error-container i {
  font-size: 100px;
  color: #ff6b6b;
  margin: 0 auto 20px;
  display: block;
  text-align: center;
}

.error-container h1 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--color-join-2);
}

.error-container p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ======== FIM ============== */