:root {
  --azul-principal: #00aaff;
  --azul-claro: #e0f7ff;
  --azul-hover: #008ecc;
  --blanco: #ffffff;
  --gris: #f5f5f5;
}

body {
  background-color: var(--azul-claro);
  font-family: 'Segoe UI', sans-serif;
  animation: fadeIn 1s ease-in;
}

.card {
  background-color: var(--blanco);
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.btn-primary {
  background-color: var(--azul-principal);
  border: none;
}

.btn-primary:hover {
  background-color: var(--azul-hover);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.card {
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 170, 255, 0.2);
  animation: fadeIn 0.7s ease-in-out;
}

.is-valid {
  border: 2px solid #28a745 !important;
  background-image: url('https://cdn-icons-png.flaticon.com/512/845/845646.png');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.is-invalid {
  border: 2px solid #dc3545 !important;
  background-image: url('https://cdn-icons-png.flaticon.com/512/753/753345.png');
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.small-feedback {
  font-size: 0.9rem;
  margin-top: 4px;
}
.context-item:hover {
  background-color: #f0f0f0;
  cursor: pointer;
}

<style>
  table td, table th {
    white-space: nowrap;
    text-align: center;
    vertical-align: middle;
  }

  .table td {
    max-width: 200px;
    overflow-x: auto;
  }

  .table th {
    background-color: #f8f9fa;
  }
</style>

<style>
#graficoEntrevistas {
    max-width: 60px;
    max-height: 60px;
    margin: auto;
    display: block;
}
</style>

#panelNotificaciones {
  max-height: 400px;
  overflow-y: auto;
}
