 /* ENROLLMENT MODALS - Added for Online Academy enrollment dialogs */
 
 .enrollment-modal {
   max-width: 28rem;
  position: relative;
 }
 
 .enrollment-modal .modal-body {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
 }
 
 .enrollment-modal .modal-header {
   text-align: center;
   margin-bottom: 1rem;
   display: flex;
   flex-direction: column;
   align-items: center;
 }
 
 .modal-icon-wrapper {
   width: 3rem; /* w-12 h-12 = 48px */
   height: 3rem;
   border-radius: 50%;
   background: hsl(var(--accent) / 0.1);
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 0.75rem;
 }
 
 .modal-icon-wrapper svg {
  width: 1.5rem; /* h-6 w-6 to match React */
  height: 1.5rem; /* h-6 w-6 to match React */
   color: hsl(var(--accent));
 }
 
 .enrollment-modal .modal-title {
   font-family: var(--font-serif);
  font-size: 1.25rem; /* text-xl */
   font-weight: 600;
   color: hsl(var(--foreground));
   margin: 0 0 0.25rem;
 }
 
 .enrollment-modal .modal-subtitle {
   font-size: 0.875rem;
   color: hsl(var(--muted-foreground));
   margin: 0;
 }
 
/* Close button - Match React DialogContent close button */
.enrollment-modal .modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  opacity: 0.7;
  border-radius: 0.125rem;
  padding: 0;
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.enrollment-modal .modal-close:hover {
  opacity: 1;
  background: transparent;
}

.enrollment-modal .modal-close svg {
  width: 1rem;
  height: 1rem;
}

 .enrollment-form {
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }
 
 .enrollment-form .form-field {
   display: flex;
   flex-direction: column;
   gap: 0.5rem;
 }
 
 .enrollment-form .form-label {
   font-size: 0.875rem;
   font-weight: 500;
   color: hsl(var(--foreground));
 }
 
 .enrollment-form .form-input {
   height: 2.5rem;
   padding: 0 0.75rem;
   border: 1px solid hsl(var(--border));
   border-radius: var(--radius);
   background: hsl(var(--background));
   color: hsl(var(--foreground));
   font-size: 0.875rem;
   transition: border-color 0.2s, box-shadow 0.2s;
 }
 
 .enrollment-form .form-input:focus {
   outline: none;
   border-color: hsl(var(--accent));
   box-shadow: 0 0 0 3px hsl(var(--accent) / 0.1);
 }
 
 .enrollment-form .form-input::placeholder {
   color: hsl(var(--muted-foreground));
 }
 
 .enrollment-form .form-input.error {
   border-color: hsl(var(--destructive));
 }
 
 .payment-section {
   border-top: 1px solid hsl(var(--border));
   padding-top: 1rem;
   margin-top: 0.5rem;
 }
 
 .payment-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 1rem;
 }
 
 .payment-title {
   font-size: 0.875rem;
   font-weight: 500;
   color: hsl(var(--foreground));
 }
 
 .secure-badge {
   display: flex;
   align-items: center;
   gap: 0.25rem;
   font-size: 0.75rem;
   color: hsl(var(--muted-foreground));
 }
 
 .secure-badge svg {
   width: 0.75rem;
   height: 0.75rem;
 }
 
 .price-display {
   background: hsl(var(--accent) / 0.1);
   border-radius: var(--radius);
   padding: 0.75rem 1rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 1rem;
 }
 
 .price-label {
   font-size: 0.875rem;
   color: hsl(var(--muted-foreground));
 }
 
 .price-value {
   font-weight: 600;
   color: hsl(var(--foreground));
 }
 
 .payment-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
   margin-top: 0.5rem;
 }
 
 .enrollment-submit {
   width: 100%;
   margin-top: 0.5rem;
 }
 
 .enrollment-submit .btn-icon {
   margin-left: 0.5rem;
   transition: transform 0.2s;
 }
 
 .enrollment-submit:hover .btn-icon {
   transform: translateX(4px);
 }
 
 /* Fix: Curriculum list visibility in free course section */
 .free-course-section .curriculum-list li {
   color: hsl(var(--primary-foreground) / 0.8);
 }
 
 .free-course-section .curriculum-list li span {
   color: hsl(var(--primary-foreground) / 0.8);
 }