/* assets/css/admin-style.css */

:root {
  --primary-color: #2c3e50;
  --accent-color: #ffc107;
  --bg-light: #f4f7f6;
  --text-dark: #333;
}

body {
  background-color: var(--bg-light);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
}

/* Encabezado del Panel */

h1 {
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid #ffffff;
  display: inline-block;
  padding-bottom: 10px;
}

/* Estilo de las Cards */

.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.2s;
}

.card-header {
  border-radius: 12px 12px 0 0 !important;
  font-weight: bold;
}

/* Personalización del modo Edición */

.bg-edit {
  background-color: var(--accent-color) !important;
  color: #000 !important;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

/* Tabla de programación */

.list-group-item {
  border-left: 5px solid transparent;
  transition: all 0.3s;
}

.list-group-item:hover {
  background-color: #fff;
  border-left: 5px solid var(--accent-color);
  transform: translateX(5px);
}

/* Botones */

.btn {
  border-radius: 8px;
  font-weight: 600;
}

