/* Customer Portal styles */
.noboxa-dashboard__alert {
    background: #FFF3CD;
    border-left: 4px solid #F39C12;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-radius: 6px;
    flex-wrap: wrap;
}
.noboxa-dashboard__alert-icon { font-size: 1.5rem; }
.noboxa-dashboard__alert .button { margin-left: auto; }

.noboxa-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.noboxa-dashboard__card {
    background: white;
    border: 1px solid #E6E8EC;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}
.noboxa-dashboard__card--cta {
    background: linear-gradient(135deg, #2997AA, #3AA6B9);
    color: white;
    border-color: #2997AA;
}
.noboxa-dashboard__card--cta a, .noboxa-dashboard__card--cta h3 { color: white; }
.noboxa-dashboard__card h3 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.5rem;
    color: #54595F;
}
.noboxa-dashboard__card--cta h3 { color: rgba(255,255,255,0.9); }
.noboxa-dashboard__big-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2997AA;
    margin: 0 0 0.5rem;
    font-family: 'Poppins', sans-serif;
}
.noboxa-dashboard__card--cta .noboxa-dashboard__big-number { display: none; }

.noboxa-orders-mini th, .noboxa-orders-mini td {
    padding: 0.625rem !important;
    font-size: 0.875rem !important;
}
.order-status {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.noboxa-timeline {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    position: relative;
    overflow-x: auto;
    padding: 1rem 0;
}
.noboxa-timeline::before {
    content: '';
    position: absolute;
    top: 1.75rem;
    left: 5%;
    right: 5%;
    height: 3px;
    background: #E6E8EC;
    z-index: 0;
}
.noboxa-timeline__step {
    text-align: center;
    flex: 1;
    min-width: 90px;
    position: relative;
    z-index: 1;
}
.noboxa-timeline__icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 3px solid #E6E8EC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-size: 1.125rem;
    transition: all 200ms;
}
.noboxa-timeline__label {
    font-size: 0.75rem;
    color: #7A7A7A;
    line-height: 1.3;
    padding: 0 0.25rem;
}
.noboxa-timeline__step.is-done .noboxa-timeline__icon {
    background: #2997AA;
    border-color: #2997AA;
}
.noboxa-timeline__step.is-done .noboxa-timeline__label {
    color: #2997AA;
    font-weight: 600;
}
.noboxa-timeline__step.is-current .noboxa-timeline__icon {
    background: #F39C12;
    border-color: #F39C12;
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(243, 156, 18, 0.4);
}

.noboxa-files table, .noboxa-team table {
    width: 100%;
    margin: 1rem 0;
}
.noboxa-files table th, .noboxa-team table th {
    background: #FBFBFB;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid #E6E8EC;
}
.noboxa-files table td, .noboxa-team table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #E6E8EC;
}

@media (max-width: 768px) {
    .noboxa-timeline { gap: 0.5rem; }
    .noboxa-timeline__icon { width: 36px; height: 36px; font-size: 0.9rem; }
    .noboxa-dashboard__alert { flex-direction: column; align-items: flex-start; }
    .noboxa-dashboard__alert .button { margin-left: 0; }
}
