.account-sidebar {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.account-sidebar .profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
  margin-bottom: 12px;
}

.profile-avatar:hover .avatar-overlay {
  opacity: 1 !important;
}

.account-sidebar h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.account-sidebar p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.account-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.account-nav li {
  margin-bottom: 4px;
}

.account-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.account-nav li a:hover,
.account-nav li a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.account-content .card-custom {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.account-content .card-custom h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}

.enrolled-course {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
}

.enrolled-course:last-child {
  border-bottom: none;
}

.enrolled-course img {
  width: 100px;
  height: 65px;
  border-radius: var(--radius);
  object-fit: cover;
}

.enrolled-course .course-info {
  flex: 1;
}

.enrolled-course .course-info h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.enrolled-course .progress {
  height: 6px;
  border-radius: 3px;
  background: var(--border);
}

.enrolled-course .progress-bar {
  background: var(--primary);
  border-radius: 3px;
}

.enrolled-course .progress-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-values .value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  height: 100%;
}

.about-values .value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.about-values .value-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-values .value-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.about-values .value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.team-card {
  text-align: center;
  padding: 24px;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--primary-light);
}

.team-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 500;
}

.contact-info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.contact-info-card i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.25rem;
  margin: 0 auto 16px;
}

.contact-info-card h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.925rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.contact-form .input-group-text {
  background: var(--primary-light);
  border: 1px solid var(--border);
  color: var(--primary);
  font-size: 1rem;
  padding: 0 14px;
}

.contact-form .input-group .form-control,
.contact-form .input-group .form-select {
  border-left: none;
}

.contact-form .input-group .form-control:focus,
.contact-form .input-group .form-select:focus {
  border-left: none;
}

.contact-form .input-group:focus-within .input-group-text {
  border-color: var(--primary);
}

.contact-textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
}

.custom-toast {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
  animation: slideInRight 0.3s ease;
}

.custom-toast.success {
  border-left: 4px solid var(--secondary);
}

.custom-toast.error {
  border-left: 4px solid var(--danger);
}

.custom-toast.warning {
  border-left: 4px solid var(--warning);
}

.custom-toast i {
  font-size: 1.25rem;
}

.custom-toast.success i {
  color: var(--secondary);
}

.custom-toast.error i {
  color: var(--danger);
}

.custom-toast.warning i {
  color: var(--warning);
}

.custom-toast p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}
