/* Rice University Brand Colors */
:root {
  --rice-blue: #00205B;
  --rice-gray: #605f6d;
}

/* Lab Website Callout Card */
.lab-callout {
  background-color: #f8f9fa;
  border: 2px solid var(--rice-blue);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Primary Button (Lab CTA) */
.btn-primary {
  background-color: var(--rice-blue);
  border-color: var(--rice-blue);
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #003380;
}

/* Outline Button (CV) */
.btn-outline-primary {
  color: var(--rice-blue);
  border-color: var(--rice-blue);
  font-weight: 600;
}

.btn-outline-primary:hover {
  background-color: var(--rice-blue);
  color: white;
}

/* Headers in Rice Blue */
h1 {
  color: var(--rice-blue);
  font-weight: 700;
  margin-top: 0;
}

/* Profile image container */
.g-col-md-4 {
  display: flex;
  align-items: flex-start;
  padding-top: 1rem;
}
