/* Bootstrap + UCR Styles */
/* styles.css */
/* Personalización UCR + ajustes generales */

body {
    font-family: 'Helvetica', 'Arial', sans-serif;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5 {
    color: #00529B; /* Azul institucional UCR */
}

a {
    color: #00529B;
    text-decoration: none;
}

a:hover {
    color: #003f7a;
    text-decoration: underline;
}

.btn-primary {
    background-color: #00529B;
    border-color: #00529B;
}

.btn-primary:hover {
    background-color: #003f7a;
    border-color: #003f7a;
}

footer {
    font-size: 0.9em;
    color: #555;
    padding: 20px 0;
    background: #e9ecef;
}

.card-title {
    color: #00529B;
}

.table th {
    background-color: #00529B;
    color: white;
}
/* Encabezado institucional UCR */
.ucr-header {
  background-color: #41ade7; 
  color: #00529B; 
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 12;
  padding: 1rem 2rem;
}

.ucr-header h1 {
  font-weight: bold;
}

.ucr-logo {
  height: 90px; /* más grande como quieres */
}

@media (max-width: 768px) {
  .ucr-header {
    flex-direction: column;
    text-align: center;
  }
  .ucr-logo {
    margin-bottom: 10px;
  }
}
.main-content {
  margin-top: 120px; /* Ajusta este valor al alto exacto de tu header */
}
.card-img-to {
    width: 100%;
    height: 150px; /* altura uniforme */
    object-fit: cover; /* recorta suavemente sin deformar */
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

