:root {
  --navbar-footer: #a1c5fc!important;
  --color-titles: #304d73;
}    
* {
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}
nav {
  background-color: var(--navbar-footer) !important;
}
main{
  background-color: #fcf6f54f;
} 
.btn-primary {
  background-color: #304d73 !important;
  border-color: #304d73 !important;;
}
.nav-pills .nav-link.active {
  background-color: #fff !important;
  color: #304d73 !important;
  border-color: #304d73 !important;
  border-radius: 0px !important;
  border: 2px solid #304d73 !important;
  font-weight: bold !important;
  padding: 10px !important;
  text-align: center !important;
  text-transform: uppercase !important;
}
.text-style {
  font-weight: bold !important;
  /* border-bottom: #304d73 solid 2px !important; */
  margin-right: 10px !important;
  color: #304d73 !important;

}

/* Esto puedes colocarlo en tu archivo app.css o directamente en <style> */
.fc .fc-toolbar-title {
    @apply text-lg font-semibold text-gray-800;
}

.fc .fc-button {
    @apply bg-blue-600 hover:bg-blue-700 text-white font-semibold rounded px-2 py-1;
}

.fc .fc-daygrid-event {
    @apply text-sm font-medium rounded shadow-sm px-1;
}
.btnNavBar {
  background-color: #a1c5fc;
  border: none;
  display: grid;
}
.alerta-amarillo{
  background-color: #f8f1de !important;
  color: #b58900 !important;
  border-color: #b58900 !important;
}
/* tabla */
.table thead th {
    vertical-align: middle;
    background-color: #304d73cb; 
    font-weight: 600;
    color: #fff;
}

.table tbody td {
    vertical-align: middle;
}

.table-hover tbody tr:hover {
    background-color: #f1f1f1;
}

strong {
    color: #304d73;
}

.fc-daygrid-event-harness {
  cursor: pointer;
}
/* Para usar :  #337ab7 */

/* Inputs minimalistas y compactos para formularios en 3 columnas */
.custom-input {
    border-radius: 0.5rem !important;
    border: 1px solid #e0e0e0 !important;
    background: #fafbfc !important;
    font-size: 1rem;
    padding: 0.45rem 0.8rem;
    transition: border-color 0.2s;
    min-height: 36px;
}
.custom-input:focus {
    border-color: #304d73 !important;
    box-shadow: 0 0 0 0.08rem #304d7320;
    background: #fff !important;
}
.form-label {
    font-weight: 600;
    color: #374151;
    letter-spacing: 0.5px;
    margin-bottom: 0.15rem !important;
}
.form-check {
    padding-left: 1.5em;
}
.form-check-input {
    margin-left: -1.5em;
}
.row.g-2 {
    row-gap: 0.4rem !important;
}
@media (max-width: 991px) {
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
.aviso-encabezado {
    position: fixed;
    top: 130px;
    left: 1050px;
    background-color: #f0f4fa;
    border-left: 4px solid #1f61ca;
    color: #1f61ca;
    padding: 8px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 999;
}

  .btn-outline-primary {
      background: transparent !important;
      color: #304d73 !important;
      border: 1.5px solid #304d73 !important;
      transition: background 0.2s, color 0.2s;
  }
  .btn-outline-primary:hover, .btn-outline-primary:focus {
      background: #304d73 !important;
      color: #fff !important;
      border-color: #304d73 !important;
  }