.fondo {
  background: linear-gradient(to bottom, #4a9fd3, #064b7c);
  height: 100vh;
  margin: 0;
  color: white;
}

.navbar-custom {
  background: linear-gradient(to left, #1c70a5, #064b7c);
  width: 80%;
  margin: 20px auto;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-custom .left-section,
.navbar-custom .center-section,
.navbar-custom .right-section {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
}

.navbar-custom .center-section {
  justify-content: center !important;
  color: white !important;
}

.navbar-custom .right-section {
  justify-content: flex-end !important;
}

.logout-btn {
  background-color: white !important;
  color: #064b7c !important;
  border-radius: 7px !important;
  padding: 5px 15px !important;
  text-transform: none !important;
  display: flex !important;
  align-items: center !important;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.logout-btn i {
  margin-right: 5px !important;
}

blockquote {
  border-left: 5px solid #064b7c !important;
}

.number-circles {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: white;
  color: black;
  text-align: center;
  margin-right: 10px;
}

.card-panel {
  border-radius: 15px !important;
}

body {
  background-color: white !important;
}

/* Asegurar que el texto dentro del select esté alineado a la izquierda */
.select-dropdown {
  text-align: left !important;
}

/* Asegurar que el texto dentro de los labels esté alineado correctamente */
.input-field label {
  text-align: left !important;
}

/* Estilo para el botón con fondo blanco y contorno rojo */
.btn-outline-red {
  background-color: white !important; /* Fondo blanco */
  color: red !important; /* Texto rojo */
  border: 1px solid red !important; /* Contorno rojo */
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
}

.btn-outline-red i.material-icons {
  margin-right: 5px; /* Espacio entre el icono y el texto */
}

.btn-outline-red:hover {
  background-color: red !important; /* Fondo rojo al pasar el cursor */
  color: white !important; /* Texto blanco al pasar el cursor */
}

.btn-outline-red:hover i.material-icons {
  color: white !important; /* Icono blanco al pasar el cursor */
}

.row .col {
  padding: 0 1.2rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}
td {
  border: 1px solid black;
  padding: 8px;
  text-align: left;
}
th {
  background: linear-gradient(to left, #1c70a5, #064b7c);
  border-radius: 15px;
  padding: 15px;
}

.highlight {
  background-color: #e6f7ff;
}
