.profile-page {
  min-height: 80vh;
  background-color: #f8f9fa;
}

.profile-page h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tk-dark, #2c3e50);
}

.profile-tabs {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-tabs .nav-link {
  border-radius: 8px;
  color: var(--tk-dark, #2c3e50);
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: all 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.profile-tabs .nav-link:hover {
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--tk-orange, #f39c12);
}

.profile-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--tk-orange, #f39c12) 0%, #e67e22 100%);
  color: white;
}

.profile-page .card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.profile-page .card-header {
  background: white;
  border-bottom: 2px solid #f8f9fa;
  border-radius: 12px 12px 0 0 !important;
  padding: 1.5rem;
}

.profile-page .card-header h5 {
  color: var(--tk-dark, #2c3e50);
  font-weight: 700;
}

.profile-page .btn-primary {
  background: linear-gradient(135deg, var(--tk-orange, #f39c12) 0%, #e67e22 100%);
  border: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.profile-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.profile-page .form-control {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.profile-page .form-control:focus {
  border-color: var(--tk-orange, #f39c12);
  box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

.profile-page .badge {
  border-radius: 12px;
  padding: 0.25rem 0.6rem;
  font-weight: 600;
}

@media (max-width: 991px) {
  .profile-tabs {
    margin-bottom: 2rem;
  }

  .profile-tabs .nav-link {
    text-align: left;
  }
}
