.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;
}

.tab {
  padding: 0.75rem 1.5rem;
  border: none;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.tab:hover {
  background-color: #e5e7eb;
}

.activeTab {
  background-color: #2563eb;
  color: white;
}

.activeTab:hover {
  background-color: #1d4ed8;
}

.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: #2563eb;
  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.25rem 0.75rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 0.5rem;
}

.editButton {
  background-color: #2563eb;
  color: white;
  border: none;
}

.editButton:hover {
  background-color: #1d4ed8;
}

.deleteButton {
  background-color: #ef4444;
  color: white;
  border: none;
}

.deleteButton:hover {
  background-color: #dc2626;
} 