.container {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .header {
    margin-bottom: 2rem;
  }
  
  .header h1 {
    color: #2C3087;
    font-size: 1.875rem;
    font-weight: 600;
    margin: 0;
  }
  
  .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(44, 48, 135, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(44, 48, 135, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .linkCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #2C3087;
    transition: width 0.3s ease;
  }
  
  .linkCard:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(44, 48, 135, 0.15);
    border-color: rgba(44, 48, 135, 0.2);
  }
  
  .linkCard:hover::before {
    width: 8px;
  }
  
  .linkCard h2 {
    font-size: 1.5rem;
    color: #2C3087;
    margin-bottom: 0.75rem;
    font-weight: 600;
    position: relative;
    padding-left: 1rem;
  }
  
  .linkCard h2::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 1rem;
    width: 40px;
    height: 3px;
    background-color: #DE751C;
    border-radius: 2px;
    transition: width 0.3s ease;
  }
  
  .linkCard:hover h2::after {
    width: 60px;
  }
  
  .linkCard p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    padding-left: 1rem;
  }
  
  .linkCard .link {
    color: #2C3087;
    text-decoration: none;
    word-break: break-all;
  }
  
  .linkCard .link:hover {
    text-decoration: underline;
    color: #DE751C;
  }
  
  .linkCard .input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    margin: 1rem 0;
    font-size: 0.95rem;
  }
  
  .linkCard .input:focus {
    outline: none;
    border-color: #2C3087;
    box-shadow: 0 0 0 2px rgba(44, 48, 135, 0.1);
  }
  
  .modalActions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .saveButton,
  .cancelButton,
  .editButton {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    min-width: 80px;
    text-align: center;
  }
  
  .saveButton {
    background-color: #2C3087;
    color: white;
  }
  
  .saveButton:hover {
    background-color: #23265f;
  }
  
  .saveButton:disabled {
    background-color: #93c5fd;
    cursor: not-allowed;
  }
  
  .cancelButton {
    background-color: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
  }
  
  .cancelButton:hover {
    background-color: #e5e7eb;
  }
  
  .editButton {
    background-color: #DE751C;
    color: white;
    margin-top: 1rem;
  }
  
  .editButton:hover {
    background-color: #c66a19;
  }
  
  .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;
  }
  
  .loadingContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
  }
  
  .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;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .container {
      padding: 1rem;
    }
  
    .header h1 {
      font-size: 1.5rem;
    }
  
    .linksGrid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 0.5rem;
    }
  
    .linkCard {
      padding: 1.5rem;
    }
  
    .linkCard h2 {
      font-size: 1.25rem;
      padding-left: 0.75rem;
    }
  
    .linkCard h2::after {
      left: 0.75rem;
      width: 30px;
    }
  
    .linkCard:hover h2::after {
      width: 45px;
    }
  
    .linkCard p {
      padding-left: 0.75rem;
      font-size: 0.95rem;
    }
  
    .linkCard::before {
      width: 3px;
    }
  
    .linkCard:hover::before {
      width: 6px;
    }
  
    .modalActions {
      flex-direction: column;
    }
  
    .saveButton,
    .cancelButton,
    .editButton {
      width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .linkCard {
      padding: 1.25rem;
    }
  
    .linkCard h2 {
      font-size: 1.125rem;
    }
  
    .linkCard p {
      font-size: 0.875rem;
    }
  
    .linkCard .input {
      padding: 0.5rem;
      font-size: 0.875rem;
    }
  } 