/* WP Application Online - Premium Frontend Styles v1.3.1 */

:root {
    --wpao-primary: #4f46e5;
    --wpao-primary-hover: #4338ca;
    --wpao-success: #10b981;
    --wpao-text-main: #1f2937;
    --wpao-text-muted: #6b7280;
    --wpao-bg-card: #ffffff;
    --wpao-border: #e5e7eb;
    --wpao-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --wpao-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* General Container */
.wpao-jobs-container, .wpao-form-container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    box-sizing: border-box;
}

.wpao-jobs-container *, .wpao-form-container * {
    box-sizing: border-box;
}

/* Job Listing Cards */
.wpao-jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.wpao-job-card {
    background: var(--wpao-bg-card);
    border: 1px solid var(--wpao-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--wpao-shadow);
}

.wpao-job-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wpao-shadow-lg);
    border-color: var(--wpao-primary);
}

.wpao-job-content { padding: 24px; }

.wpao-job-title {
    font-size: 24px;
    font-weight: 800;
        color: #10b981;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.wpao-job-meta-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.wpao-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--wpao-text-muted);
}

.wpao-meta-item i { font-size: 14px; color: var(--wpao-primary); }
.wpao-meta-item.wpao-expiry { background: #ecfdf5; color: #10b981; }
.wpao-meta-item.wpao-expiry i { color: #10b981; }
.wpao-meta-item.wpao-expiry.wpao-expired { background: #fef2f2; color: #dc2626; }
.wpao-meta-item.wpao-expiry.wpao-expired i { color: #dc2626; }

.wpao-desc-section { margin-top: 20px; }
.wpao-desc-section h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--wpao-text-main);
}
.wpao-desc-section ul { padding-left: 20px; margin-bottom: 0; }
.wpao-desc-section li { margin-bottom: 6px; color: #4b5563; font-size: 15px; }

/* Stylish Application Form */
.wpao-form-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--wpao-shadow-lg);
    width: 100%;
}

.wpao-applying-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 30px 20px;
    color: white;
    text-align: center;
}

.wpao-applying-label {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    opacity: 0.9;
    display: block;
    margin-bottom: 8px;
}

.wpao-applying-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: white !important;
    line-height: 1.2;
}

.wpao-applying-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
}

.wpao-applying-meta span { display: flex; align-items: center; gap: 6px; }

.wpao-step { padding: 25px 20px; }

/* Step Indicator */
.wpao-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.wpao-step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #9ca3af;
    font-size: 13px;
    flex-shrink: 0;
}

.wpao-step-dot.active { background: var(--wpao-primary); color: white; }
.wpao-step-dot.completed { background: var(--wpao-success); color: white; }

.wpao-step-line {
    height: 2px;
    flex-grow: 1;
    max-width: 40px;
    background: #e5e7eb;
    margin: 0 8px;
}

.wpao-step-line.active { background: var(--wpao-primary); }
.wpao-step-line.completed { background: var(--wpao-success); }

/* Form Elements */
.wpao-form-group { margin-bottom: 20px; }
.wpao-form-group label {
    display: block;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--wpao-text-main);
}

.wpao-input-with-icon { position: relative; }
.wpao-input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--wpao-text-muted);
}

.wpao-input-with-icon input { padding-left: 48px !important; }

.wpao-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

input[type="text"], input[type="email"], input[type="tel"], input[type="url"], textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #f3f4f6;
    border-radius: 10px;
    font-size: 16px;
    background: #f9fafb;
    transition: all 0.2s;
    -webkit-appearance: none;
}

input:focus, textarea:focus {
    background: white;
    border-color: var(--wpao-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.wpao-file-upload {
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    background: #f9fafb;
}

.wpao-file-upload:hover { border-color: var(--wpao-primary); background: #f5f3ff; }
.wpao-file-upload i { font-size: 28px; color: var(--wpao-primary); margin-bottom: 10px; display: block; }
.wpao-file-upload input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.wpao-file-upload span { font-size: 14px; color: var(--wpao-text-muted); }

/* Buttons */
.wpao-btn {
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.wpao-btn-primary { background: var(--wpao-primary); color: white !important; }
.wpao-btn-primary:hover { background: var(--wpao-primary-hover); transform: translateY(-1px); }

.wpao-btn-link { background: none; color: var(--wpao-text-muted); font-size: 14px; width: auto; }
.wpao-btn-link:hover { color: var(--wpao-text-main); }

.wpao-form-actions { display: flex; justify-content: space-between; align-items: center; gap: 15px; }

/* Success State */
.wpao-success-animation {
    margin-bottom: 30px;
}

.wpao-success-icon-wrap {
    width: 80px;
    height: 80px;
    background: #ecfdf5;
    color: var(--wpao-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: wpao-scale-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wpao-success-icon-wrap i { font-size: 48px; }

@keyframes wpao-scale-in {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Enhanced Form Styles */
.wpao-required {
    color: #d63638;
    margin-left: 2px;
}

.wpao-checkbox-group {
    margin-bottom: 20px;
}

.wpao-checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal;
}

.wpao-checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.wpao-checkbox-label span {
    font-size: 14px;
    line-height: 1.5;
    color: var(--wpao-text-main);
}

.wpao-checkbox-label a {
    color: var(--wpao-primary);
    text-decoration: underline;
}

/* File Upload - Selected State */
.wpao-file-upload.wpao-file-selected {
    border-color: var(--wpao-success);
    background: #ecfdf5;
    border-style: solid;
}

.wpao-file-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 5px;
}

.wpao-file-name i {
    color: var(--wpao-success);
    font-size: 20px;
    margin-bottom: 0;
}

.wpao-file-name-text {
    font-weight: 600;
    color: var(--wpao-text-main);
    word-break: break-all;
    max-width: 100%;
}

.wpao-file-size {
    color: var(--wpao-text-muted);
    font-size: 12px;
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 768px) {
    .wpao-form-container {
        padding: 0 10px;
        margin: 10px auto;
    }
    
    .wpao-form-card {
        border-radius: 16px;
    }
    
    .wpao-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .wpao-applying-header {
        padding: 24px 16px;
    }
    
    .wpao-applying-title {
        font-size: 20px;
    }
    
    .wpao-applying-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .wpao-step {
        padding: 20px 16px;
    }
    
    .wpao-step-indicator {
        margin-bottom: 24px;
    }
    
    .wpao-step-dot {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .wpao-step-line {
        max-width: 30px;
        margin: 0 6px;
    }
    
    .wpao-form-group {
        margin-bottom: 16px;
    }
    
    .wpao-form-group label {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    textarea {
        font-size: 16px; /* Prevents iOS zoom on focus */
        padding: 14px 16px;
        border-radius: 8px;
    }
    
    .wpao-input-with-icon input {
        padding-left: 44px !important;
    }
    
    .wpao-input-with-icon i {
        left: 14px;
    }
    
    textarea {
        min-height: 120px;
    }
    
    .wpao-file-upload {
        padding: 20px 12px;
        border-radius: 8px;
    }
    
    .wpao-file-upload i {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .wpao-file-upload span {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .wpao-btn {
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 8px;
        min-height: 48px; /* Touch-friendly target */
    }
    
    .wpao-form-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }
    
    .wpao-form-actions .wpao-btn-link {
        width: 100%;
        padding: 12px;
    }
    
    .wpao-checkbox-label {
        align-items: flex-start;
    }
    
    .wpao-checkbox-label input[type="checkbox"] {
        width: 22px;
        height: 22px;
        margin-right: 12px;
        margin-top: 2px;
    }
    
    .wpao-checkbox-label span {
        font-size: 13px;
    }
    
    /* Success state mobile */
    .wpao-success-icon-wrap {
        width: 70px;
        height: 70px;
    }
    
    .wpao-success-icon-wrap i {
        font-size: 40px;
    }
    
    /* Message styling mobile */
    .wpao-message {
        font-size: 14px;
        padding: 12px 14px;
        border-radius: 8px;
    }
}

@media (max-width: 380px) {
    .wpao-applying-title {
        font-size: 18px;
    }
    
    .wpao-applying-label {
        font-size: 10px;
    }
    
    .wpao-step-dot {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .wpao-step-line {
        max-width: 20px;
        margin: 0 4px;
    }
    
    .wpao-btn {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .wpao-file-name {
        flex-direction: column;
        gap: 4px;
    }
    
    .wpao-file-name-text {
        font-size: 13px;
    }
}
/* ============================================
   ENHANCED MY APPLICATIONS TRACKING UI
   ============================================ */

/* Dashboard Container */
.wpao-dashboard-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 0 15px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.wpao-dashboard-card {
    background: var(--wpao-bg-card);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--wpao-shadow-lg);
}

/* Applications Header */
.wpao-applications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f3f4f6;
}

.wpao-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wpao-applications-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: var(--wpao-text-main);
}

.wpao-app-count {
    background: linear-gradient(135deg, var(--wpao-primary) 0%, #7c3aed 100%);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.wpao-btn-logout {
    background: #f3f4f6;
    color: var(--wpao-text-muted) !important;
    padding: 10px 18px;
    font-size: 14px;
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.wpao-btn-logout:hover {
    background: #e5e7eb;
    color: var(--wpao-text-main) !important;
}

.wpao-btn-logout .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Status Legend */
.wpao-status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 12px;
}

.wpao-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--wpao-text-muted);
    font-weight: 500;
}

.wpao-legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wpao-legend-dot.reviewing { background: #3b82f6; }
.wpao-legend-dot.shortlisted { background: #f59e0b; }
.wpao-legend-dot.interview { background: #8b5cf6; }
.wpao-legend-dot.accepted { background: #10b981; }
.wpao-legend-dot.rejected { background: #ef4444; }

/* Application Card */
.wpao-application-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.wpao-application-item:hover {
    border-color: var(--wpao-primary);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
    transform: translateY(-2px);
}

.wpao-application-item:last-child {
    margin-bottom: 0;
}

/* Card Status Stripe */
.wpao-app-status-stripe {
    height: 4px;
    width: 100%;
}

.wpao-app-status-stripe.pending { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.wpao-app-status-stripe.reviewing { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.wpao-app-status-stripe.interview { background: linear-gradient(90deg, #8b5cf6, #a78bfa); }
.wpao-app-status-stripe.approved { background: linear-gradient(90deg, #10b981, #34d399); }
.wpao-app-status-stripe.rejected { background: linear-gradient(90deg, #ef4444, #f87171); }

/* Card Content */
.wpao-app-card-content {
    padding: 20px 24px;
}

.wpao-app-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.wpao-app-card-info {
    flex: 1;
}

.wpao-application-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--wpao-text-main);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.wpao-application-id {
    font-size: 12px;
    color: var(--wpao-text-muted);
    font-weight: 500;
    margin-bottom: 8px;
}

.wpao-application-id span {
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

/* Status Badge */
.wpao-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    white-space: nowrap;
}

.wpao-status-badge .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.wpao-status-badge.wpao-status-reviewing {
    background: #dbeafe;
    color: #1d4ed8;
}

.wpao-status-badge.wpao-status-shortlisted {
    background: #fef3c7;
    color: #b45309;
}

.wpao-status-badge.wpao-status-interview {
    background: #ede9fe;
    color: #6d28d9;
}

.wpao-status-badge.wpao-status-accepted {
    background: #d1fae5;
    color: #047857;
}

.wpao-status-badge.wpao-status-rejected {
    background: #fee2e2;
    color: #b91c1c;
}

/* Application Meta */
.wpao-app-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.wpao-app-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--wpao-text-muted);
}

.wpao-app-meta-item .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    color: var(--wpao-primary);
}

.wpao-app-meta-item strong {
    color: var(--wpao-text-main);
    font-weight: 600;
}

/* Progress Timeline */
.wpao-progress-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0;
    padding: 16px 20px;
    background: #f9fafb;
    border-radius: 12px;
}

.wpao-timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.wpao-timeline-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.wpao-timeline-dot .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.wpao-timeline-step.active .wpao-timeline-dot,
.wpao-timeline-step.completed .wpao-timeline-dot {
    background: var(--wpao-primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.2);
}

.wpao-timeline-step.completed .wpao-timeline-dot {
    background: var(--wpao-success);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.wpao-timeline-step.rejected .wpao-timeline-dot {
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

.wpao-timeline-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--wpao-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wpao-timeline-step.active .wpao-timeline-label,
.wpao-timeline-step.completed .wpao-timeline-label {
    color: var(--wpao-text-main);
}

.wpao-timeline-line {
    flex: 1;
    height: 3px;
    background: #e5e7eb;
    margin: 0 -8px;
    margin-bottom: 24px;
}

.wpao-timeline-line.completed {
    background: var(--wpao-success);
}

.wpao-timeline-line.active {
    background: linear-gradient(90deg, var(--wpao-success) 0%, var(--wpao-primary) 50%, #e5e7eb 50%);
}

/* Application Actions */
.wpao-application-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.wpao-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.wpao-action-btn-primary {
    background: var(--wpao-primary);
    color: white !important;
}

.wpao-action-btn-primary:hover {
    background: var(--wpao-primary-hover);
    transform: translateY(-1px);
}

.wpao-action-btn-secondary {
    background: #f3f4f6;
    color: var(--wpao-text-main) !important;
}

.wpao-action-btn-secondary:hover {
    background: #e5e7eb;
}

.wpao-action-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Empty State */
.wpao-empty-state {
    text-align: center;
    padding: 60px 20px;
}

.wpao-empty-illustration {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wpao-empty-illustration .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: #9ca3af;
}

.wpao-empty-state h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--wpao-text-main);
    margin: 0 0 8px;
}

.wpao-empty-state p {
    font-size: 15px;
    color: var(--wpao-text-muted);
    margin: 0;
}

/* Loading Animation */
.wpao-skeleton {
    background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
    background-size: 200% 100%;
    animation: wpao-shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes wpao-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Mobile Responsive - Dashboard */
@media (max-width: 768px) {
    .wpao-dashboard-container {
        margin: 15px auto;
        padding: 0 10px;
    }
    
    .wpao-dashboard-card {
        padding: 20px 16px;
        border-radius: 16px;
    }
    
    .wpao-applications-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .wpao-header-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .wpao-applications-header h3 {
        font-size: 20px;
    }
    
    .wpao-btn-logout {
        width: 100%;
        justify-content: center;
    }
    
    .wpao-status-legend {
        gap: 12px;
        padding: 12px;
    }
    
    .wpao-legend-item {
        font-size: 12px;
    }
    
    .wpao-app-card-content {
        padding: 16px;
    }
    
    .wpao-app-card-top {
        flex-direction: column;
        gap: 12px;
    }
    
    .wpao-application-title {
        font-size: 16px;
    }
    
    .wpao-status-badge {
        align-self: flex-start;
    }
    
    .wpao-app-meta-row {
        flex-direction: column;
        gap: 12px;
    }
    
    .wpao-progress-timeline {
        padding: 12px;
        gap: 4px;
    }
    
    .wpao-timeline-dot {
        width: 28px;
        height: 28px;
    }
    
    .wpao-timeline-dot .dashicons {
        font-size: 14px;
        width: 14px;
        height: 14px;
    }
    
    .wpao-timeline-label {
        font-size: 9px;
    }
    
    .wpao-application-actions {
        flex-direction: column;
    }
    
    .wpao-action-btn {
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .wpao-progress-timeline {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .wpao-timeline-line {
        display: none;
    }
    
    .wpao-timeline-step {
        width: 30%;
    }
}