body {
  background-color: #f1f5f9; /* Fundo levemente mais escuro para contraste */
  color: var(--text);
  line-height: 1.6;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.page-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--border);
  letter-spacing: -0.5px;
}

#dynamicContentContainer {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hidden {
  display: none !important;
}

/* --- SPINNERS & LOADING --- */
.loading-message {
  text-align: center;
  padding: 40px;
  color: var(--text-light);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 3px solid rgba(37, 99, 235, 0.1);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========================================================== */
/* --- CABEÇALHO DE PERFIL --- */
/* ========================================================== */

.profile-header-ponto {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 30px;
  background-color: var(--surface);
  border-radius: 16px; /* Mais arredondado */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.profile-avatar-ponto {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--border);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 3px var(--primary); /* Anel externo */
}

.profile-info-ponto {
  flex: 1;
  min-width: 250px;
}

.employee-name {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.employee-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 15px;
  width: 100%;
}

.employee-details span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--text-light);
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  flex: 0 0 auto;
}

.employee-details span:hover {
  background: transparent;
  border-color: transparent;
}

.employee-details span i {
  color: var(--primary);
  font-size: 1rem;
}

.employee-details span strong {
  color: var(--text);
  font-weight: 600;
}

/* ========================================================== */
/* --- LINKS RÁPIDOS (ABAS MODERNAS) --- */
/* ========================================================== */

/* ========================================================== */
/* --- LINKS RÁPIDOS (ABAS - CORREÇÃO FULL WIDTH) --- */
/* ========================================================== */

.quick-links {
  display: grid;
  /* Cria colunas automáticas: cada botão terá no mínimo 160px e esticará (1fr) para preencher tudo */
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); 
  gap: 12px; /* Espaço entre os botões */
  width: 100%; /* Garante que o container use 100% da largura */
  padding-bottom: 10px;
  border-bottom: none;
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza o ícone e texto horizontalmente */
  gap: 8px;
  padding: 14px 16px; /* Aumentei um pouco o padding vertical */
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
  background-color: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
  white-space: nowrap; /* Evita quebra de linha no texto do botão */
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}




.link-item.active-link {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.link-item.active-link i {
  color: var(--white);
}

/* Indicador de notificação no link */
.link-item.has-notification {
  position: relative;
}

.link-item.has-notification::after {
  content: "";
  position: absolute;
  top: -4px; /* Ajustado para ficar visível no card */
  right: -4px;
  width: 12px;
  height: 12px;
  background-color: var(--error);
  border-radius: 50%;
  border: 2px solid var(--surface);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Responsividade para telas menores (Celulares) */
@media (max-width: 600px) {
    .quick-links {
        /* Em celulares, volta a ser 2 colunas fixas ou 1 coluna */
        grid-template-columns: 1fr 1fr; 
    }
    .link-item {
        font-size: 0.8rem;
        padding: 10px;
        white-space: normal; /* Permite quebrar texto em telas pequenas */
        text-align: center;
    }
}

/* ========================================================== */
/* --- RELÓGIO E PONTOS DO DIA --- */
/* ========================================================== */

#timeClockSection {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.time-clock-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f8fafc);
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.clock-display {
  font-family: "Courier New", Courier, monospace; /* Monospace para evitar pulos */
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -3px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 10px;
}

.current-date {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 35px;
  font-weight: 500;
  text-transform: capitalize;
}

#punchButton {
  padding: 18px 40px;
  font-size: 1.2rem;
  border-radius: 12px;
  background-color: var(--primary);
  border: none;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

#punchButton:hover:not(:disabled) {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

#punchButton:disabled {
  background-color: var(--text-light);
  cursor: not-allowed;
  box-shadow: none;
}

/* Lista de Pontos do Dia */
.daily-punches {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.punches-title {
  padding: 20px 25px;
  background: var(--surface-hover);
  border-bottom: 1px solid var(--border);
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.punch-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  border-bottom: 1px solid var(--border);
}
.punch-item:last-child {
  border-bottom: none;
}
.punch-item strong {
  font-size: 1.1rem;
  color: var(--primary-dark);
}

/* ========================================================== */
/* --- ESPELHO DE PONTO (CALENDÁRIO FIXO) --- */
/* ========================================================== */

#mirrorSection {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.calendar-container {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.calendar-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
}

#currentMonthYear {
  flex: 1;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 15px;
  background: var(--surface-hover);
  border-bottom: 1px solid var(--border);
}

.weekdays span {
  text-align: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* GRID DO CALENDÁRIO */
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px; /* Linhas da grid */
  background-color: var(--border); /* Cor das linhas */
  border-bottom: 1px solid var(--border);
}

.calendar-day {
  background-color: var(--surface);
  min-height: 110px; /* Altura mínima garantida */
  height: auto; /* Cresce se precisar */
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: background 0.2s;
}

.calendar-day:hover {
  background-color: #fdfdfd;
}
.calendar-day.empty {
  background-color: var(--surface-hover);
}

/* Cores de Fundo por Status */
.day-falta {
  background-color: #fff1f2 !important;
} /* Vermelho bem claro */
.day-feriado {
  background-color: #eff6ff !important;
} /* Azul claro */
.day-folga {
  background-color: #f8fafc !important;
} /* Cinza claro */
.day-inconsistente {
  background-color: #fffbeb !important;
} /* Amarelo claro */
.day-afastado {
  background-color: #f3e8ff !important;
} /* Roxo claro */

/* Cabeçalho do Dia (Número e Badges) */
.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.day-number {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Badges de Status (Pequenas etiquetas) */
.badge-status {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
}
.badge-status.falta {
  background: var(--error-light);
  color: var(--error);
  border: 1px solid var(--error);
}
.badge-status.feriado {
  background: var(--info-light);
  color: var(--info-dark);
}
.badge-status.inconsistente {
  background: var(--warning-light);
  color: var(--warning-dark);
}
.badge-status.afastado {
  background: #e9d5ff;
  color: #7e22ce;
}

/* Lista de Batidas dentro do dia */
.punch-details {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  flex: 1; /* Empurra o rodapé para baixo */
}

.punch-details li {
  margin-bottom: 2px;
  color: var(--text);
  white-space: nowrap; /* Evita quebra de linha feia */
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Rodapé com Saldo */
.day-footer {
  margin-top: 6px;
  padding-top: 4px;
  border-top: 1px dashed var(--border);
  text-align: right;
}

.daily-balance {
  font-weight: 800;
  font-size: 0.8rem;
}
.daily-balance.text-success {
  color: var(--success-dark);
}
.daily-balance.text-danger {
  color: var(--error);
}
.daily-balance.text-warning {
  color: var(--warning-dark);
}
.daily-balance.text-muted {
  color: var(--text-light);
  opacity: 0.7;
}

/* --- RESUMO DO MÊS --- */
.summary-card {
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 25px;
}

.summary-title {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: var(--text);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.summary-item {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--surface-hover);
  border: 1px solid var(--border);
}

.summary-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 5px;
}

.summary-item span {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
}

/* Cores nos totais */
.summary-item span.text-success {
  color: var(--success);
}
.summary-item span.text-danger {
  color: var(--error);
}

/* ========================================================== */
/* --- AVISOS RH (REDESENHADO - ESTILO MODERNO) --- */
/* ========================================================== */

#avisosListContainer {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px 0;
}

.aviso-card {
  background-color: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
  padding: 25px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.aviso-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

/* Aviso Não Lido (Destaque) */
.aviso-card.aviso-nao-lido {
  border-left-color: var(--success);
  background-color: var(--white);
}

.aviso-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.aviso-status {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: var(--primary);
  color: var(--white);
}

.aviso-nao-lido .aviso-status {
  background-color: var(--success);
  color: var(--white);
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.aviso-date {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.aviso-card h4 {
  margin: 0 0 10px 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.aviso-remetente {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
  font-style: italic;
}

.aviso-content {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed var(--border);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}

.btn-expand-aviso {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}
.btn-expand-aviso:hover {
  text-decoration: underline;
}

/* ========================================================== */
/* --- OUTRAS SEÇÕES (Formulários, Banco, etc) --- */
/* ========================================================== */

.afastamento-form,
.adjustment-form {
  background: var(--surface);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text);
}

.form-input,
.form-select {
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Banco de Horas Cards */
.bank-balance-card {
  text-align: center;
  padding: 40px;
  color: white;
  border-radius: 12px 12px 0 0; /* Arredondado em cima */
}
.bank-balance-card.positive {
  background: linear-gradient(135deg, var(--success), #16a34a);
}
.bank-balance-card.negative {
  background: linear-gradient(135deg, var(--error), #dc2626);
}
.bank-balance-card.neutral {
  background: var(--secondary);
}

.balance-value {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 5px;
}
.balance-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ========================================================== */
/* --- MODAL DE CHAT REUTILIZÁVEL - TAMANHO FIXO --- */
/* ========================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.2s ease;
}

.modal-overlay.show {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content-chat {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
  /* TAMANHO FIXO - NÃO MUDA */
  width: 600px;
  height: 700px;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: slideUp 0.3s ease;
  overflow: hidden;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.05);
  border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.modal-close-btn:active {
  transform: scale(0.95);
}

#chatMasterContainer {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* ========================================================== */
/* --- RESPONSIVIDADE --- */
/* ========================================================== */

@media (max-width: 768px) {
  .calendar-grid,
  .weekdays {
    font-size: 0.8rem;
  }
  .calendar-day {
    min-height: 80px;
  }
  .profile-header-ponto {
    flex-direction: column;
    text-align: center;
  }
  .employee-details {
    justify-content: center;
  }
  .clock-display {
    font-size: 3.5rem;
  }
  .summary-grid {
    grid-template-columns: 1fr;
  }
  
  /* Modal em mobile: ocupa tela inteira */
  .modal-content-chat {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
  }
}

/* Badges Específicos */
.badge-status.ferias {
  background: #e9d5ff;
  color: #6b21a8;
  border: 1px solid #d8b4fe;
} /* Roxo */
.day-ferias {
  background-color: #f3e8ff !important;
} /* Fundo Roxo Claro */



/* Grid para seleção de múltiplos meses */
.month-grid-selection {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.month-checkbox-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.2s;
}

.month-checkbox-item:hover {
    background: #e9ecef;
}

.month-checkbox-item input {
    margin-bottom: 5px;
    transform: scale(1.2);
}

.month-checkbox-item span {
    font-size: 0.85em;
    font-weight: 500;
}
/* ========================================================== */
/* --- PAGINAÇÃO DOS AVISOS (CANTO INFERIOR DIREITO) --- */
/* ========================================================== */

/* Wrapper completo */
#noticesPaginationContainer {
  display: flex !important;
  justify-content: right !important; 
  align-items: center !important;
  width: 100% !important;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

/* Contador à esquerda */
#noticesRecordCount {
  font-size: 0.9em;
  color: var(--text-light);
  font-weight: 500;
  text-align: left !important;
}

/* Botões à direita */
#noticesPaginationContainer > div {
  display: flex !important;
  gap: 8px;
  justify-content: flex-end !important;
}

/* Estilo dos botões */
#noticesPaginationContainer button {
  padding: 8px 12px;
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  min-width: 40px;
}


/* ========================================================== */
/* --- PAGINAÇÃO DOS AFASTAMENTOS (CANTO INFERIOR DIREITO) --- */
/* ========================================================== */

/* Wrapper completo */
#removalsPaginationContainer {
  display: flex !important;
  justify-content: right !important;
  align-items: center !important;
  width: 100% !important;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

/* Contador à esquerda */
#removalsRecordCount {
  font-size: 0.9em;
  color: var(--text-light);
  font-weight: 500;
  text-align: left !important;
}

/* Botões à direita */
#removalsPaginationContainer > div {
  display: flex !important;
  gap: 8px;
  justify-content: flex-end !important;
}

/* Estilo dos botões */
#removalsPaginationContainer button {
  padding: 8px 12px;
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  min-width: 40px;
  transition: all 0.2s ease;
}

#removalsPaginationContainer button:hover:not(:disabled) {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

#removalsPaginationContainer button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#removalsPaginationContainer button.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}


/* ========================================================== */
/* --- PAGINAÇÃO DOS AJUSTES (CANTO INFERIOR DIREITO) --- */
/* ========================================================== */

#adjustmentsPaginationContainer {
  display: flex !important;
  justify-content: right !important;
  align-items: center !important;
  width: 100% !important;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

/* Texto de "Página X de Y" */
#adjustmentsRecordCount {
  font-size: 0.9em;
  color: var(--text-light);
  font-weight: 500;
  text-align: left !important;
}

/* Container dos botões (gerado automaticamente pelo JS) */
#adjustmentsPaginationContainer > div {
  display: flex !important;
  gap: 8px;
  justify-content: flex-end !important;
}

/* --- Estilo dos Botões (Idêntico aos outros módulos) --- */
#adjustmentsPaginationContainer button {
  padding: 8px 12px;
  border: 1px solid var(--border);
  background-color: var(--surface);
  color: var(--text);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  min-width: 40px;
  transition: all 0.2s ease;
}

#adjustmentsPaginationContainer button:hover:not(:disabled) {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

#adjustmentsPaginationContainer button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#adjustmentsPaginationContainer button.active {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}


/* Botão (+) Azul Discreto */
.btn-icon-add {
  width: 38px;
  height: 38px; /* Mesma altura do input padrão */
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.2); /* Borda azul bem clarinha */
  background-color: rgba(37, 99, 235, 0.05); /* Fundo azul quase transparente */
  color: var(--primary); /* Azul principal do sistema */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.btn-icon-add:hover {
  background-color: var(--primary);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 2px 5px rgba(37, 99, 235, 0.3);
}

/* Botão Lixeira (Para combinar o alinhamento) */
.btn-icon-danger {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid transparent;
  background-color: transparent;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-icon-danger:hover {
  background-color: #fee2e2;
  color: var(--error);
}