/**
 * Order Status Live Widget - Styles
 * Branch: hotfix-9158-live-order-status-redesign
 *
 * Light theme adaptation of the dark-themed mockup,
 * using doctorSIM brand colours and Quicksand font.
 *
 * @date 2026-02-15
 */

/* ------------------------------------------------------------------ */
/*  Container                                                          */
/* ------------------------------------------------------------------ */
.osl-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 24px 16px 40px;
    font-family: 'Quicksand', sans-serif;
    color: #343a3f;
}

/* ------------------------------------------------------------------ */
/*  Live indicator                                                     */
/* ------------------------------------------------------------------ */
.osl-live {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #28a745;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
}
.osl-refresh-btn {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    font-size: 14px;
    color: #197aa6;
    background: rgba(25,122,166,0.08);
    border-radius: 50%;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}
.osl-refresh-btn:hover {
    background: rgba(25,122,166,0.18);
    color: #197aa6;
    text-decoration: none;
}
.osl-live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    -webkit-animation: oslPulse 2s ease infinite;
    animation: oslPulse 2s ease infinite;
}
@-webkit-keyframes oslPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}
@keyframes oslPulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

/* ------------------------------------------------------------------ */
/*  Order summary card                                                 */
/* ------------------------------------------------------------------ */
.osl-summary {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 14px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.osl-summary-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(155,205,105,0.15), rgba(25,122,166,0.15));
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.osl-summary-icon img {
    max-width: 36px;
    max-height: 36px;
    border-radius: 4px;
}
.osl-summary-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
}
.osl-summary-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
    color: #343a3f;
}
.osl-summary-detail {
    font-size: 12px;
    color: #6c757d;
}
.osl-summary-price {
    font-weight: 700;
    font-size: 18px;
    color: #197aa6;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* ------------------------------------------------------------------ */
/*  Progress bar                                                       */
/* ------------------------------------------------------------------ */
.osl-progress {
    margin-bottom: 22px;
}
.osl-progress-labels {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.osl-progress-track {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}
.osl-progress-fill {
    height: 100%;
    border-radius: 3px;
    -webkit-transition: width 0.6s ease;
    transition: width 0.6s ease;
}
.osl-progress-fill.osl-color-green {
    background: linear-gradient(90deg, #9bcd69, #28a745);
}
.osl-progress-fill.osl-color-blue {
    background: linear-gradient(90deg, #9bcd69, #197aa6);
}
.osl-progress-fill.osl-color-orange {
    background: linear-gradient(90deg, #9bcd69, #f59e0b);
}
.osl-progress-fill.osl-color-red {
    background: linear-gradient(90deg, #dc3545, #e74c3c);
}

/* ------------------------------------------------------------------ */
/*  Terminal block                                                     */
/* ------------------------------------------------------------------ */
.osl-terminal {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 22px;
}
.osl-terminal-titlebar {
    background: #0f172a;
    padding: 8px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #334155;
}
.osl-terminal-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
}
.osl-terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.osl-terminal-dots span:first-child  { background: #ef4444; }
.osl-terminal-dots span:nth-child(2) { background: #f59e0b; }
.osl-terminal-dots span:nth-child(3) { background: #22c55e; }
.osl-terminal-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 11px;
    color: #64748b;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
}
.osl-terminal-body {
    padding: 18px 20px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    line-height: 1.8;
    color: #94a3b8;
}
.osl-terminal-line {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 2px;
}
.osl-terminal-prompt {
    color: #22c55e;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.osl-terminal-text {
    color: #94a3b8;
}
.osl-terminal-text .osl-hl  { color: #22c55e; }
.osl-terminal-text .osl-val { color: #3b82f6; }
.osl-terminal-text .osl-wrn { color: #f59e0b; }
.osl-terminal-text .osl-dim { color: #94a3b8; }

/* Cursor blink */
.osl-cursor {
    display: inline-block;
    width: 7px;
    height: 14px;
    background: #22c55e;
    vertical-align: middle;
    margin-left: 4px;
    -webkit-animation: oslBlink 1s step-end infinite;
    animation: oslBlink 1s step-end infinite;
}
@-webkit-keyframes oslBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}
@keyframes oslBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0; }
}

/* Spinner */
.osl-spin {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    vertical-align: middle;
    -webkit-animation: oslSpin 0.8s linear infinite;
    animation: oslSpin 0.8s linear infinite;
}
@-webkit-keyframes oslSpin {
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes oslSpin {
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

/* ------------------------------------------------------------------ */
/*  Pipeline section                                                   */
/* ------------------------------------------------------------------ */
.osl-pipeline-section {
    margin-bottom: 22px;
}
.osl-pipeline-header {
    font-size: 11px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}
.osl-pipeline-header:after {
    content: '';
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Vertical timeline */
.osl-pipeline {
    position: relative;
    padding-left: 32px;
}
.osl-pipeline:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

/* Stage */
.osl-stage {
    position: relative;
    padding: 0 0 30px 22px;
}
.osl-stage:last-child {
    padding-bottom: 0;
}

/* Indicator circle */
.osl-stage-dot {
    position: absolute;
    left: -24px;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 13px;
    z-index: 2;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/* Stage states */
.osl-stage-complete .osl-stage-dot {
    background: #9bcd69;
    color: #fff;
    -webkit-box-shadow: 0 0 0 3px rgba(155,205,105,0.25);
    box-shadow: 0 0 0 3px rgba(155,205,105,0.25);
}
.osl-stage-active .osl-stage-dot {
    background: #197aa6;
    color: #fff;
    -webkit-box-shadow: 0 0 0 3px rgba(25,122,166,0.25);
    box-shadow: 0 0 0 3px rgba(25,122,166,0.25);
    -webkit-animation: oslRingBlue 2s ease infinite;
    animation: oslRingBlue 2s ease infinite;
}
.osl-stage-action .osl-stage-dot {
    background: #f59e0b;
    color: #fff;
    -webkit-box-shadow: 0 0 0 3px rgba(245,158,11,0.25);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.25);
    -webkit-animation: oslRingOrange 1.5s ease infinite;
    animation: oslRingOrange 1.5s ease infinite;
}
.osl-stage-pending .osl-stage-dot {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    color: #adb5bd;
}
.osl-stage-error .osl-stage-dot {
    background: #dc3545;
    color: #fff;
    -webkit-box-shadow: 0 0 0 3px rgba(220,53,69,0.25);
    box-shadow: 0 0 0 3px rgba(220,53,69,0.25);
}

@-webkit-keyframes oslRingBlue {
    0%   { -webkit-box-shadow: 0 0 0 0 rgba(25,122,166,0.35); box-shadow: 0 0 0 0 rgba(25,122,166,0.35); }
    70%  { -webkit-box-shadow: 0 0 0 8px rgba(25,122,166,0); box-shadow: 0 0 0 8px rgba(25,122,166,0); }
    100% { -webkit-box-shadow: 0 0 0 0 rgba(25,122,166,0); box-shadow: 0 0 0 0 rgba(25,122,166,0); }
}
@keyframes oslRingBlue {
    0%   { box-shadow: 0 0 0 0 rgba(25,122,166,0.35); }
    70%  { box-shadow: 0 0 0 8px rgba(25,122,166,0); }
    100% { box-shadow: 0 0 0 0 rgba(25,122,166,0); }
}
@-webkit-keyframes oslRingOrange {
    0%   { -webkit-box-shadow: 0 0 0 0 rgba(245,158,11,0.35); box-shadow: 0 0 0 0 rgba(245,158,11,0.35); }
    70%  { -webkit-box-shadow: 0 0 0 8px rgba(245,158,11,0); box-shadow: 0 0 0 8px rgba(245,158,11,0); }
    100% { -webkit-box-shadow: 0 0 0 0 rgba(245,158,11,0); box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}
@keyframes oslRingOrange {
    0%   { box-shadow: 0 0 0 0 rgba(245,158,11,0.35); }
    70%  { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
    100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

/* Stage label */
.osl-stage-label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.osl-stage-complete .osl-stage-label { color: #5a8a2a; }
.osl-stage-active  .osl-stage-label  { color: #197aa6; }
.osl-stage-action  .osl-stage-label  { color: #d97706; }
.osl-stage-pending .osl-stage-label  { color: #adb5bd; }
.osl-stage-error   .osl-stage-label  { color: #dc3545; }

/* Badges */
.osl-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}
.osl-badge-done    { background: rgba(155,205,105,0.2); color: #5a8a2a; }
.osl-badge-active  { background: rgba(25,122,166,0.15); color: #197aa6; }
.osl-badge-action  { background: rgba(245,158,11,0.15); color: #d97706; }
.osl-badge-waiting { background: rgba(173,181,189,0.2); color: #adb5bd; }
.osl-badge-error   { background: rgba(220,53,69,0.15);  color: #dc3545; }

/* Stage description */
.osl-stage-desc {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
    margin-top: 3px;
}
.osl-receipt-link {
    display: inline-block;
    margin-top: 8px;
    padding: 5px 12px;
    font-size: 12px;
    color: #197aa6;
    border: 1px solid #197aa6;
    border-radius: 4px;
    text-decoration: none;
}
.osl-receipt-link:hover {
    background: #197aa6;
    color: #fff;
    text-decoration: none;
}
.osl-receipt-link .fa {
    margin-right: 4px;
}
.osl-stage-time {
    font-size: 11px;
    color: #adb5bd;
    margin-top: 4px;
}

/* ------------------------------------------------------------------ */
/*  Action cards                                                       */
/* ------------------------------------------------------------------ */
.osl-action-card {
    margin-top: 10px;
    background: #fffbeb;
    border-radius: 8px;
    padding: 14px 18px;
    border-left: 3px solid #f59e0b;
}
.osl-action-card.osl-action-error {
    background: #fef2f2;
    border-left-color: #dc3545;
}
.osl-action-card.osl-action-success {
    background: #f0fdf4;
    border-left-color: #9bcd69;
}
.osl-action-header {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
    color: #343a3f;
}
.osl-action-text {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 12px;
}
.osl-action-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
}
.osl-btn {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    border: none;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    text-align: center;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.osl-btn-primary {
    background: #f59e0b;
    color: #fff;
}
.osl-btn-primary:hover {
    background: #d97706;
}
.osl-btn-success {
    background: #197aa6;
    color: #fff;
}
.osl-btn-success:hover {
    background: #145f82;
}
.osl-btn-secondary {
    background: transparent;
    color: #6c757d;
    border: 1px solid #dee2e6;
}
.osl-btn-secondary:hover {
    border-color: #adb5bd;
    color: #343a3f;
}
.osl-btn-danger {
    background: #e74c3c;
    color: #fff;
}
.osl-btn-danger:hover {
    background: #c0392b;
}
.osl-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* 4-digit code input */
.osl-code-input {
    width: 120px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #343a3f;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    letter-spacing: 6px;
    text-align: center;
    outline: none;
    margin-bottom: 10px;
    display: block;
}
.osl-code-input:focus {
    border-color: #f59e0b;
    -webkit-box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
    box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}
.osl-code-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.osl-code-feedback {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    display: none;
    line-height: 1.5;
}
.osl-code-feedback:not(:empty) {
    display: block;
}
.osl-code-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.osl-code-retry {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}
.osl-code-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.osl-code-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* ------------------------------------------------------------------ */
/*  Help bar                                                           */
/* ------------------------------------------------------------------ */
.osl-help {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #6c757d;
}
.osl-help-icon {
    font-size: 18px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
.osl-help a {
    color: #197aa6;
    text-decoration: none;
}
.osl-help a:hover {
    text-decoration: underline;
}

/* ------------------------------------------------------------------ */
/*  Gift card PIN display                                              */
/* ------------------------------------------------------------------ */
.osl-pin-container {
    margin-top: 10px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 14px 18px;
    text-align: center;
}
.osl-pin-label {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 6px;
}
.osl-pin-value {
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: 700;
    color: #343a3f;
    letter-spacing: 2px;
}
.osl-pin-hidden {
    color: #adb5bd;
}
.osl-pin-toggle {
    display: inline-block;
    margin-top: 8px;
    cursor: pointer;
    color: #197aa6;
    font-size: 13px;
    font-weight: 600;
    border: none;
    background: none;
    font-family: 'Quicksand', sans-serif;
}
.osl-pin-toggle:hover {
    text-decoration: underline;
}
.osl-pin-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}
.osl-copy-link {
    color: #197aa6;
}

/* ------------------------------------------------------------------ */
/*  Gift card product display inside action card                       */
/* ------------------------------------------------------------------ */
.osl-gc-product {
    text-align: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #bbf7d0;
}
.osl-gc-product-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}
.osl-gc-icon {
    width: 48px;
    height: auto;
}
.osl-pmt-icon {
    height: 24px;
    width: auto;
    border-radius: 3px;
    vertical-align: middle;
}
.osl-gc-operator {
    width: 36px;
    height: 36px;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 4px;
}
.osl-gc-name {
    font-weight: 700;
    color: #6c757d;
    font-size: 14px;
}
.osl-gc-price {
    font-size: 18px;
    font-weight: 700;
    color: #9bcd69;
}

/* ------------------------------------------------------------------ */
/*  New Lookup button                                                  */
/* ------------------------------------------------------------------ */
.osl-new-lookup {
    margin-top: 20px;
    text-align: center;
}

/* ------------------------------------------------------------------ */
/*  Responsive                                                         */
/* ------------------------------------------------------------------ */
@media (max-width: 640px) {
    .osl-container {
        padding: 16px 10px 60px;
    }
    .osl-summary {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 14px;
    }
    .osl-summary-price {
        margin-top: 2px;
    }
    .osl-terminal-body {
        padding: 12px 14px;
        font-size: 11px;
    }
    .osl-pipeline {
        padding-left: 26px;
    }
    .osl-stage {
        padding-left: 16px;
    }
    .osl-stage-dot {
        width: 24px;
        height: 24px;
        font-size: 11px;
        left: -20px;
    }
    .osl-action-card {
        padding: 12px 14px;
    }
}

/* ------------------------------------------------------------------ */
/*  Demo switcher (test page only)                                     */
/* ------------------------------------------------------------------ */
.osl-demo-switcher {
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    -webkit-box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.osl-demo-label {
    font-size: 9px;
    font-weight: 700;
    color: #adb5bd;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 2px;
}
.osl-demo-btn {
    padding: 7px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #6c757d;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}
.osl-demo-btn:hover {
    border-color: #197aa6;
    color: #343a3f;
}
.osl-demo-btn.active {
    border-color: #197aa6;
    background: rgba(25,122,166,0.08);
    color: #197aa6;
}

@media (max-width: 640px) {
    .osl-demo-switcher {
        bottom: 8px;
        right: 8px;
        left: 8px;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .osl-demo-label {
        width: 100%;
    }
}

/* ------------------------------------------------------------------ */
/*  Success banner (post-payment redirect)                             */
/* ------------------------------------------------------------------ */
.osl-success-banner {
    max-width: 860px;
    margin: 0 auto 8px;
    padding: 28px 20px 24px;
    text-align: center;
    background: linear-gradient(135deg, #f0faf0 0%, #e8f5e9 100%);
    border: 1px solid #c8e6c9;
    border-radius: 12px;
}
.osl-success-banner-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 10px;
}
.osl-success-banner-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #2e7d32;
    margin: 0 0 6px;
}
.osl-success-banner-subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #555;
    margin: 0;
}
@media (max-width: 480px) {
    .osl-success-banner {
        padding: 20px 16px 18px;
    }
    .osl-success-banner-icon {
        font-size: 32px;
    }
    .osl-success-banner-title {
        font-size: 18px;
    }
    .osl-success-banner-subtitle {
        font-size: 13px;
    }
}
