/* ========================== */
/* TABLERO KANBAN */
/* ========================== */
  
  .kanban-column {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 5px;
    min-height: 250px;
  }
  
  .kanban-card {
    background: #f9f9f9;
    border-left: 3px solid var(--primary-color);
    margin-bottom: 5px;
    padding: 6px;
    border-radius: 3px;
    cursor: grab;
    font-size: 0.85rem;  /* Reduce el tamaño del texto */
    transition: transform 0.2s;
}

.kanban-card h5 {
  font-size: 1rem; /* Reduce el tamaño del título */
  margin-bottom: 3px;
}

.kanban-card p {
  font-size: 0.8rem; /* Reduce el tamaño de la descripción */
  margin-bottom: 2px;
}
  
  .kanban-card:hover {
    transform: scale(1.02);
  }
  
  /* ========================== */
/* CALENDARIO FULLCALENDAR */
/* ========================== */
  .fc {
    font-family: var(--font-family-base);
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  /* ========================== */
/* NOTIFICACIONES Y RECORDATORIOS */
/* ========================== */
  .notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: #fff;
    padding: 15px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  
  .notification.show {
    opacity: 1;
  }
  
/* ========================== */
/* ESTILOS ESPECÍFICOS PARA DATATABLES BUTTONS */
/* ========================== */
.dt-buttons .btn-success {
  background-color: var(--success-color) !important;
  color: white !important;
  border: none !important;
}

.dt-buttons .btn-danger {
  background-color: var(--danger-color) !important;
  color: white !important;
  border: none !important;
}

.dt-buttons .btn-secondary {
  background-color: #6c757d !important;
  color: white !important;
  border: none !important;
}

/* ========================== */
/* ESTILOS AVANZADOS ADICIONALES (opcional) */
/* ========================== */

/* Tarjetas o secciones avanzadas */
.section-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

/* Estados personalizados */
.estado-pendiente {
  background-color: #fff3cd;
  color: #856404;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.estado-completado {
  background-color: #d4edda;
  color: #155724;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
}

/* Responsive para secciones avanzadas */
@media (max-width: 768px) {
  .section-card {
      padding: 15px;
  }
  .action-buttons {
      flex-direction: column;
      gap: 10px;
  }
}
  
  
    