.container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .welcomeSection {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .welcomeTitle {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
  }
  
  .welcomeText {
    font-size: 1.2rem;
    color: #666;
  }
  
  .linksGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
  }
  
  .linkCard {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .linkCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }
  
  .linkCard h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
  }
  
  .linkCard p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
  }
  
  .loadingContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
  }
  
  .loadingSpinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }
  
    .welcomeTitle {
      font-size: 2rem;
    }
  
    .welcomeText {
      font-size: 1rem;
    }
  
    .linksGrid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .linkCard {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 480px) {
    .welcomeTitle {
      font-size: 1.75rem;
    }
  
    .linkCard h2 {
      font-size: 1.25rem;
    }
  }
  
  /* Team Management Styles */
  .tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
  }
  
  .tab {
    padding: 0.75rem 1.5rem;
    border: none;
    background-color: transparent;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    color: #6b7280;
    position: relative;
  }
  
  .tab:hover {
    color: #2C3087;
  }
  
  .activeTab {
    color: #2C3087;
    background-color: transparent;
    font-weight: 700;
  }
  
  .activeTab::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #DE751C;
    border-radius: 2px;
  }
  
  .memberImage {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
  }
  
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modalContent {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    width: 100%;
    max-width: 500px;
  }
  
  .formGroup {
    margin-bottom: 1rem;
  }
  
  .formGroup label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
  }
  
  .formGroup input,
  .formGroup textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
  }
  
  .formGroup textarea {
    min-height: 100px;
    resize: vertical;
  }
  
  .modalActions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .saveButton,
  .cancelButton {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
  }
  
  .saveButton {
    background-color: #2c3087;
    color: white;
    border: none;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .saveButton:hover {
    background-color: #1d4ed8;
  }
  
  .saveButton:disabled {
    background-color: #93c5fd;
    cursor: not-allowed;
  }
  
  .saveButton .loadingSpinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .cancelButton {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
  }
  
  .cancelButton:hover {
    background-color: #e5e7eb;
  }
  
  .editButton,
  .deleteButton {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }
  
  .editButton {
    background-color: #2C3087;
    color: white;
  }
  
  .editButton:hover {
    background-color: #23265f;
  }
  
  .deleteButton {
    background-color: #DE751C;
    color: white;
  }
  
  .deleteButton:hover {
    background-color: #c66a19;
  }
  
  /* Table Styles */
  .tableContainer {
    width: 100%;
    overflow-x: auto;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
  }
  
  .table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
  }
  
  .table th {
    background-color: #2C3087;
    color: white;
    font-weight: 600;
    text-align: left;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  
  .table th:first-child {
    border-top-left-radius: 0.5rem;
  }
  
  .table th:last-child {
    border-top-right-radius: 0.5rem;
  }
  
  .table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
  }
  
  .table tr:last-child td {
    border-bottom: none;
  }
  
  .table tr:hover td {
    background-color: rgba(44, 48, 135, 0.05);
  }
  
  .table tr:hover td:first-child {
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
  }
  
  .table tr:hover td:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }
  
  .memberImage {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 2px solid #2c3087;
    transition: transform 0.2s ease;
  }
  
  .memberImage:hover {
    transform: scale(1.1);
  }
  
  /* Header Section */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
  }
  
  .header h1 {
    color: #2C3087;
    font-size: 1.875rem;
    font-weight: 600;
    margin: 0;
  }
  
  .addButton {
    background-color: #DE751C;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .addButton:hover {
    background-color: #c66a19;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }
  
    .header {
      flex-direction: column;
      gap: 1rem;
      align-items: flex-start;
    }
  
    .header h1 {
      font-size: 1.5rem;
    }
  
    .tabs {
      overflow-x: auto;
      padding-bottom: 0.25rem;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }
  
    .tabs::-webkit-scrollbar {
      display: none;
    }
  
    .tab {
      padding: 0.5rem 1rem;
      white-space: nowrap;
    }
  
    .activeTab {
      font-weight: 700;
    }
  
    .activeTab::after {
      height: 3px;
      bottom: -0.25rem;
    }
  
    .tableContainer {
      margin: 0 -1rem;
      border-radius: 0;
      width: calc(100% + 2rem);
    }
  
    .table th,
    .table td {
      padding: 0.5rem 0.375rem;
      line-height: 1.2;
    }
  
    .table tr {
      height: auto;
    }
  
    .memberImage {
      width: 40px;
      height: 40px;
    }
  
    .descriptionCell {
      max-width: 150px;
      min-width: 120px;
      line-height: 1.2;
    }
  
    .actionsCell {
      width: 90px;
      padding: 0.375rem !important;
    }
  
    .actionButtons {
      gap: 0.25rem;
    }
  
    .editButton,
    .deleteButton {
      padding: 0.25rem 0.375rem;
      font-size: 0.75rem;
      min-height: 28px;
    }
  
    .table th:first-child,
    .table td:first-child {
      width: 50px;
      padding-left: 0.5rem;
    }
  
    .table th:nth-child(2),
    .table td:nth-child(2) {
      width: 100px;
      min-width: 80px;
    }
  
    .table th:nth-child(3),
    .table td:nth-child(3) {
      width: 90px;
      min-width: 70px;
    }
  }
  
  /* Loading State */
  .loadingContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
  }
  
  .loadingSpinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(44, 48, 135, 0.1);
    border-top: 3px solid #2C3087;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  /* Error Message */
  .error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: #fee2e2;
    border-radius: 0.375rem;
    border: 1px solid #fecaca;
  }
  
  .noData {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    font-size: 1rem;
    border: 2px dashed #e5e7eb;
  }
  
  .loadingContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    width: 100%;
    background-color: #f9fafb;
    border-radius: 0.5rem;
  }
  
  .loadingSpinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(44, 48, 135, 0.1);
    border-top: 3px solid #2C3087;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
  
  .error {
    text-align: center;
    padding: 2rem 1rem;
    color: #ef4444;
    background-color: #fee2e2;
    border-radius: 0.5rem;
    font-size: 1rem;
    border: 1px solid #fecaca;
    margin: 1rem 0;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .descriptionCell {
    max-width: 200px;
    min-width: 150px;
    line-height: 1.5;
    color: #4b5563;
    word-wrap: break-word;
    white-space: normal;
  }
  
  .actionsCell {
    width: 120px;
    padding: 0.75rem !important;
  }
  
  .actionButtons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }
  
  .editButton,
  .deleteButton {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.875rem;
    width: 100%;
    text-align: center;
  }
  
  .editButton {
    background-color: #2C3087;
    color: white;
  }
  
  .editButton:hover {
    background-color: #23265f;
  }
  
  .deleteButton {
    background-color: #ef4444;
    color: white;
  }
  
  .deleteButton:hover {
    background-color: #dc2626;
  }
  
  /* Update table styles for better column widths */
  .table th,
  .table td {
    padding: 0.75rem;
    vertical-align: middle;
  }
  
  .table th:first-child,
  .table td:first-child {
    width: 80px;
    padding-left: 1rem;
  }
  
  .table th:nth-child(2),
  .table td:nth-child(2) {
    width: 150px;
    min-width: 120px;
  }
  
  .table th:nth-child(3),
  .table td:nth-child(3) {
    width: 120px;
    min-width: 100px;
  }
  
  /* Specific column widths for partners tab */
  .table th:nth-child(4),
  .table td:nth-child(4) {
    width: 120px;
    min-width: 100px;
  }
  
  /* Specific column widths for associates tab */
  .table th:nth-child(4):has(+ th:last-child),
  .table td:nth-child(4):has(+ td:last-child) {
    width: 150px;
    min-width: 120px;
  }
  
  @media (max-width: 768px) {
    .descriptionCell {
      max-width: 150px;
      min-width: 120px;
    }
  
    .actionsCell {
      width: 100px;
      padding: 0.5rem !important;
    }
  
    .actionButtons {
      gap: 0.375rem;
    }
  
    .editButton,
    .deleteButton {
      padding: 0.375rem 0.5rem;
      font-size: 0.75rem;
    }
  
    .table th,
    .table td {
      padding: 0.5rem;
    }
  
    .table th:first-child,
    .table td:first-child {
      width: 60px;
      padding-left: 0.75rem;
    }
  
    .table th:nth-child(2),
    .table td:nth-child(2) {
      width: 120px;
      min-width: 100px;
    }
  
    .table th:nth-child(3),
    .table td:nth-child(3) {
      width: 100px;
      min-width: 80px;
    }
  } 