/* AI Interview Trainer - Improved Font Sizes and Readability */

/* Base font sizes for better readability */
.ait-step,
.ait-profile-container,
.ait-sessions-dashboard {
    font-size: 16px;
    line-height: 1.6;
}

.ait-step h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.ait-step h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

/* === FLEXBOX PROFILE COLUMNS - FORCED TWO COLUMN LAYOUT === */
.ait-profile-columns {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    margin: 30px 0;
    width: 100%;
}

.ait-profile-column {
    flex: 1 !important;
    min-width: 0; /* Prevents flex items from overflowing */
    display: flex;
}

.ait-profile-option {
    flex: 1;
    background: white;
    padding: 40px 30px !important; /* Left-right padding */
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ait-profile-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.ait-option-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.ait-profile-option h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.ait-profile-option p {
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.ait-profile-option .ait-button {
    margin-top: auto;
    align-self: center;
    width: auto;
    min-width: 200px;
}

/* Force two columns on all screens except mobile */
@media (min-width: 769px) {
    .ait-profile-columns {
        flex-wrap: nowrap !important;
    }
    
    .ait-profile-column {
        flex-basis: 50% !important;
        max-width: 50% !important;
    }
}

/* Stack on mobile */
@media (max-width: 768px) {
    .ait-profile-columns {
        flex-direction: column !important;
        gap: 20px;
    }
    
    .ait-profile-column {
        flex-basis: 100% !important;
        max-width: 100% !important;
    }
    
    .ait-profile-option {
        padding: 30px 25px !important;
    }
}

/* Improved question text size */
.ait-question-text {
    font-size: 20px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.5;
    margin: 15px 0;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 4px;
}

/* Improved answer box text size */
.ait-answer-box textarea {
    font-size: 16px;
    line-height: 1.6;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    resize: vertical;
    min-height: 150px;
    transition: border-color 0.3s;
}

.ait-answer-box textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Improved feedback text size */
.ait-feedback-text {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
}

.ait-feedback-text .feedback-section {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    font-size: 16px;
}

.ait-feedback-text .strengths {
    background: #e8f5e8;
    border-left: 4px solid #27ae60;
}

.ait-feedback-text .improvements {
    background: #fff3e0;
    border-left: 4px solid #f39c12;
}

.ait-feedback-text .tips {
    background: #e3f2fd;
    border-left: 4px solid #3498db;
}

.ait-feedback-text .sample {
    background: #f3e5f5;
    border-left: 4px solid #9b59b6;
    font-style: italic;
}

.ait-feedback-text .feedback-section h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
}

.ait-feedback-text .feedback-section p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Profile page improvements */
.ait-profile-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    margin-top: 20px;
}

.ait-profile-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ait-profile-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.ait-avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    font-weight: bold;
    margin: 0 auto 15px;
}

.ait-profile-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.ait-profile-info p {
    color: #7f8c8d;
    margin-bottom: 20px;
}

.ait-profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.ait-stat {
    text-align: center;
}

.ait-stat-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
}

.ait-stat-label {
    font-size: 14px;
    color: #7f8c8d;
}

.ait-profile-actions-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ait-profile-actions-card h5 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.ait-button.full-width {
    width: 100%;
    margin-bottom: 10px;
}

/* Improved column layout */
.ait-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.ait-column {
    display: flex;
    flex-direction: column;
}

.ait-column-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8f9fa;
}

.ait-column-icon {
    width: 40px;
    height: 40px;
    background: #3498db;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.ait-column h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.ait-column textarea {
    flex: 1;
    min-height: 250px;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    resize: vertical;
    transition: border-color 0.3s;
}

.ait-column textarea:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.ait-column textarea::placeholder {
    color: #95a5a6;
    font-size: 14px;
}

/* Back button styling */
.ait-step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid 
}

.ait-back-button {
    font-size: 16px;
    padding: 10px 15px;
}

/* Submit status indicator */
.ait-submit-status {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #fff3e0;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 14px;
    color: #f39c12;
}

.ait-spinner-small {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #f39c12;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
}

/* Sessions dashboard improvements */
.ait-sessions-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ait-stat-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.ait-stat-icon {
    font-size: 32px;
}

.ait-stat-content {
    display: flex;
    flex-direction: column;
}

.ait-stat-card .ait-stat-number {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
}

.ait-stat-card .ait-stat-label {
    font-size: 14px;
    color: #7f8c8d;
}

/* Professional Session List Styles */
.ait-sessions-list {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ait-sessions-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    font-weight: 600;
    color: #2c3e50;
}

.ait-session-item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid #f1f3f4;
    align-items: center;
    transition: background-color 0.2s ease;
}

.ait-session-item:hover {
    background-color: #f8f9fa;
}

.ait-session-item:last-child {
    border-bottom: none;
}

.ait-session-date {
    color: #6c757d;
    font-weight: 500;
}

.ait-session-id code {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 14px;
}

.ait-session-questions {
    color: #495057;
    font-weight: 500;
}

.ait-session-actions {
    display: flex;
    gap: 10px;
}

/* Purchase notification styles */
.ait-purchase-notification {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px 0;
}

.ait-purchase-header {
    text-align: center;
    margin-bottom: 30px;
}

.ait-purchase-header h3 {
    color: #27ae60;
    margin-bottom: 10px;
}

.ait-pricing-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.ait-package-option {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.ait-package-option:hover {
    border-color: #3498db;
    transform: translateY(-2px);
}

.ait-package-option.ait-popular {
    border-color: #3498db;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.ait-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.ait-package-option h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.ait-price {
    font-size: 32px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 15px;
}

.ait-package-option p {
    color: #6c757d;
    margin-bottom: 20px;
}

.ait-purchase-footer {
    text-align: center;
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.ait-redirect-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 10px 15px;
    margin-top: 15px;
}

.ait-redirect-notice p {
    margin: 0;
    color: #856404;
    font-weight: 500;
}

/* Button improvements */
.ait-button {
    background: #3498db;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ait-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.ait-button.secondary {
    background: #9B87A1;
}

.ait-button.secondary:hover {
    background: #7f8c8d;
}

.ait-button.small {
    padding: 10px 16px;
    font-size: 14px;
}

.ait-button.large {
    padding: 16px 32px;
    font-size: 18px;
}

.ait-button-icon {
    font-size: 14px;
}

/* Message styles */
.ait-message {
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.5;
}

.ait-error {
    border-left: 4px solid #e74c3c;
    background: #fdeded;
}

.ait-success {
    border-left: 4px solid #27ae60;
    background: #edf7ed;
}

.ait-info {
    border-left: 4px solid #3498db;
    background: #e8f4fd;
}

/* Responsive design */
@media (max-width: 1200px) {
    .ait-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ait-profile-container {
        grid-template-columns: 1fr;
    }
    
    .ait-sessions-header,
    .ait-session-item {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .ait-columns {
        grid-template-columns: 1fr;
    }
    
    .ait-step-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .ait-sessions-stats {
        grid-template-columns: 1fr;
    }
    
    .ait-profile-stats {
        grid-template-columns: 1fr;
    }
    
    .ait-button {
        width: 100%;
        margin: 5px 0;
    }
    
    .ait-feedback-text .feedback-section {
        padding: 15px;
    }
    
    .ait-profile-options {
        flex-direction: column;
        align-items: center;
    }
    
    .ait-profile-option {
        flex: 1 1 100%;
        max-width: 100%;
    }
    
    .ait-sessions-header,
    .ait-session-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ait-session-actions {
        justify-content: center;
    }
    
    .ait-pricing-options {
        grid-template-columns: 1fr;
    }
}

/* Animation for smooth transitions */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ait-fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
/* === FORCED TWO-COLUMN FLEXBOX LAYOUT === */
/* === FORCED TWO-COLUMN FLEXBOX LAYOUT === */
.ait-profile-columns {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    margin: 30px 0 !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
}

.ait-profile-column {
    flex: 1 1 50% !important;
    min-width: 0 !important;
    display: flex !important;
}

.ait-profile-card {
    flex: 1 !important;
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e0e0e0 !important; /* Light border line added */
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.ait-profile-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    border-color: #3498db !important;
}

.ait-profile-card .ait-option-icon {
    font-size: 48px !important;
    margin-bottom: 20px !important;
}

.ait-profile-card h4 {
    font-size: 20px !important;
    margin-bottom: 15px !important;
    color: #2c3e50 !important;
}

.ait-profile-card p {
    color: #7f8c8d !important;
    margin-bottom: 20px !important;
    line-height: 1.5 !important;
    flex-grow: 1 !important;
}

.ait-profile-card .ait-button {
    margin-top: auto !important;
    align-self: center !important;
    width: auto !important;
    min-width: 200px !important;
}

/* Second column button - Green color */
.ait-profile-column:last-child .ait-button.secondary {
    background: #27ae60 !important;
    border: 2px solid #27ae60 !important;
}

.ait-profile-column:last-child .ait-button.secondary:hover {
    background: #219652 !important;
    border-color: #219652 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3) !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ait-profile-columns {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .ait-profile-column {
        flex: 1 1 100% !important;
    }
    
    .ait-profile-card {
        padding: 30px 25px !important;
    }
}

/* ===== STEP 2 SPACING FIXES ===== */

/* Add spacing between buttons and profile section */
.ait-profile-actions-top {
    margin-bottom: 70px !important;
    display: flex;
    gap: 15px !important;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.ait-profile-actions-top .ait-button.small {
    padding: 12px 20px !important;
    font-size: 18px !important;
    margin: 0 !important;
}

/* Improve step header spacing */
.ait-step-header {
    margin-bottom: 30px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

/* Ensure proper spacing for the columns section */
.ait-columns {
    margin-top: 0 !important;
}

/* Add some breathing room between columns */
.ait-column {
    margin-bottom: 10px !important;
}
/* Enhanced Feedback Styles */
.feedback-question-section,
.feedback-answer-section,
.feedback-
analysis-section {
    margin-bottom: 25px;
    padding: 15px;
    border-radius: 8px;
}

.feedback-question-section {
    background: #f0f7ff;
    border-left: 4px solid #007cba;
}

.feedback-answer-section {
    background: #f9f9f9;
    border-left: 4px solid #28a745;
}

.feedback-analysis-section {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.user-question-text,
.user-answer-text {
    font-style: italic;
    margin: 10px 0;
    padding: 10px;
    background: white;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.feedback-section {
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border-left: 4px solid #e9ecef;
}

.feedback-section.strengths {
    border-left-color: #28a745;
    background: #f8fff9;
}

.feedback-section.improvements {
    border-left-color: #ffc107;
    background: #fffef0;
}

.feedback-section.tips {
    border-left-color: #17a2b8;
    background: #f0fdff;
}

.feedback-section.sample {
    border-left-color: #6f42c1;
    background: #f8f9ff;
}

.sample-answer {
    font-style: italic;
    color: #555;
    line-height: 1.5;
}

.feedback-section h4 {
    margin: 0 0 10px 0;
    color: #333;
}

.feedback-section ul {
    margin: 0;
    padding-left: 20px;
}

.feedback-section li {
    margin-bottom: 5px;
    line-height: 1.4;
}

/* Enhanced Feedback Styles with Better Structure */
.ait-feedback-container {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
}

.feedback-section {
    margin: 20px 0;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #e9ecef;
    background: white;
}

.feedback-section:first-child {
    margin-top: 0;
}

.feedback-section.strengths {
    border-left-color: #28a745;
    background: linear-gradient(to right, #f8fff9 0%, white 100%);
}

.feedback-section.improvements {
    border-left-color: #ffc107;
    background: linear-gradient(to right, #fffef0 0%, white 100%);
}

.feedback-section.tips {
    border-left-color: #17a2b8;
    background: linear-gradient(to right, #f0fdff 0%, white 100%);
}

.feedback-section.sample {
    border-left-color: #6f42c1;
    background: linear-gradient(to right, #f8f9ff 0%, white 100%);
}

.feedback-section h4 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feedback-section h4::before {
    content: '';
    width: 6px;
    height: 24px;
    background: currentColor;
    border-radius: 3px;
}

.feedback-section.strengths h4 {
    color: #28a745;
}

.feedback-section.improvements h4 {
    color: #e67e22;
}

.feedback-section.tips h4 {
    color: #17a2b8;
}

.feedback-section.sample h4 {
    color: #6f42c1;
}

.feedback-subsection {
    margin: 15px 0;
    padding-left: 0;
}

.feedback-subsection h5 {
    font-size: 16px;
    font-weight: 600;
    color: #495057;
    margin: 15px 0 10px 0;
}

.feedback-section p {
    margin: 12px 0;
    line-height: 1.7;
    color: #495057;
    font-size: 15px;
}

.feedback-section ul {
    margin: 10px 0;
    padding-left: 25px;
    list-style-type: disc;
}

.feedback-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #495057;
    font-size: 15px;
}

.feedback-section li::marker {
    color: #6c757d;
}

.sample-answer {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    font-style: italic;
    line-height: 1.7;
    margin-top: 15px;
}

.sample-answer p {
    margin: 10px 0;
    color: #495057;
}

.sample-answer p:first-child {
    margin-top: 0;
}

.sample-answer p:last-child {
    margin-bottom: 0;
}

/* Question and Answer Display */
.feedback-question-section,
.feedback-answer-section {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 8px;
}

.feedback-question-section {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
}

.feedback-answer-section {
    background: #f3e5f5;
    border-left: 4px solid #9c27b0;
}

.feedback-question-section h5,
.feedback-answer-section h5 {
    margin: 0 0 12px 0;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
}

.user-question-text,
.user-answer-text {
    font-style: italic;
    margin: 0;
    padding: 15px;
    background: white;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.1);
    line-height: 1.6;
    color: #495057;
}

/* Ensure proper spacing in feedback container */
.feedback-analysis-section {
    margin-top: 30px;
}

.feedback-formatted {
    line-height: 1.7;
}

.feedback-formatted > div {
    margin-bottom: 15px;
}
/* Updated Pricing Table Styles */
.ait-pricing-table {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.ait-pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.ait-pricing-header h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 28px;
}

.ait-pricing-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

.ait-pricing-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ait-package-option {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 2px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ait-package-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ait-package-option.ait-popular {
    border-color: #007cba;
    position: relative;
    transform: scale(1.05);
}

.ait-package-option.ait-popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.ait-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.ait-package-option h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 20px;
}

.ait-price {
    font-size: 32px;
    font-weight: bold;
    color: #007cba;
    margin: 15px 0;
}

.ait-features {
    margin: 25px 0;
    color: #555;
    line-height: 1.6;
}

.ait-feature-item {
    margin-bottom: 10px;
}

.ait-button.ait-purchase-btn {
    display: inline-block;
    background: #007cba;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.ait-button.ait-purchase-btn:hover {
    background: #005a87;
}

.ait-popular .ait-button.ait-purchase-btn {
    background: #28a745;
}

.ait-popular .ait-button.ait-purchase-btn:hover {
    background: #218838;
}

.ait-currency-note {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #888;
}

/* Add to your main CSS file */
.feedback-section.grammar {
    border-left: 4px solid #e74c3c;
    background: #fff5f5;
}

.feedback-section.grammar h4 {
    color: #e74c3c;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .ait-pricing-options {
        flex-direction: column;
        align-items: center;
    }
    
    .ait-package-option {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    
    .ait-package-option.ait-popular {
        transform: none;
    }
    
    .ait-package-option.ait-popular:hover {
        transform: translateY(-5px);
    }
}

.ait-session-actions {
    margin-top: 15px;
    padding-top: 15px;
    margin-bottom: 20px;
 
    border-top: 1px solid #e0e0e0;
}

#ait-end-session {
    background: #6c757d;
    color: white;
}

#ait-end-session:hover {
    background: #5a6268;
    
}


