/**
 * SEAL Lab Website - Component Styles
 * Extracted from inline styles for better maintainability
 */

/* ===== HEADER COMPONENTS ===== */

/* Page header layout with logo */
.page-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.page-header-logo {
  height: 80px;
  width: auto;
  border: none;
}

.page-header-title {
  margin: 0;
}

/* ===== FACULTY SECTION ===== */

.faculty-section {
  margin-bottom: 30px;
}

.faculty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}

.faculty-image {
  width: 250px;
  height: 250px;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  margin-bottom: 15px;
}

.faculty-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.faculty-title {
  color: #666;
  text-align: center;
}

/* Faculty list table */
.faculty-list-table {
  width: 100%;
}

.faculty-list-table td {
  width: 30%;
}

/* ===== BUTTONS ===== */

.fade-button {
  background-color: white;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  text-decoration: underline;
  border-radius: 5%;
  transition: color 0.3s, background-color 0.3s;
}

.fade-button:hover {
  color: #0056b3;
  background-color: #f9f9f9;
}

.fade-button:focus,
.fade-button:active {
  color: white;
  background-color: black;
  text-decoration: none;
}

/* ===== ALERTS & NOTICES ===== */

.alert-welcome {
  color: red;
}

/* ===== NEWS SECTION ===== */

.news-section-heading {
  margin-top: 30px;
}
