body {
    font-family: Arial, sans-serif;
  }
  .container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
  }
  input, select {
    display: block;
    width: 100%;
    margin: 8px 0;
    padding: 8px;
  }
  .button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
  }
  .button:hover {
    background-color: #45a049;
  }
  #loader-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  #loader-overlay.active {
    display: flex;
  }
  .loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 10px;
  }
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  .team-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
    margin-top: 20px;
  }
  .team-card {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 12px;
    background-color: #f9f9f9;
  }

  .team-card .team-footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    text-align: center;
    font-size: 14px;
    color: #333;
}

/* Bold text for Caption and Vice-Caption */
.team-card .team-footer .caption,
.team-card .team-footer .vice-caption {
    font-weight: bold;
}

/* Caption and Vice-Caption label */
.team-card .team-footer .caption-label,
.team-card .team-footer .vice-caption-label {
    font-size: 12px;
    color: #888;
}

  .pagination {
    text-align: center;
    margin-top: 20px;
  }
  .pagination button {
    padding: 8px 16px;
    margin: 0 5px;
  }
  