/* ==========================================================================
   Modern Customer Dashboard Styles (OnDemand Services)
   ========================================================================== */

.user-dashboard-wrap {
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: calc(100vh - 200px);
    background-color: #f8fafc;
}

/* User Welcome Hero Banner */
.user-hero-banner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 32px;
    margin-bottom: 30px;
    box-shadow: 0 4px 25px -5px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
}

.user-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa, #38bdf8);
}

.user-hero-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.user-hero-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-hero-avatar {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: #eff6ff;
    border: 2px solid #dbeafe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
}

.user-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-hero-meta h1,
.user-hero-meta h2 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.02em;
}

.user-hero-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.user-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 9999px;
    background: #f1f5f9;
    color: #475569;
}

.user-pill-badge.active,
.user-pill-badge.success {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

.user-pill-badge.warning {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.user-pill-badge.danger {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.user-pill-badge.info {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.user-pill-badge.active .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    animation: userPulse 2s infinite;
}

@keyframes userPulse {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.user-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.user-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
    cursor: pointer;
}

.user-action-btn.primary {
    background: #2563eb;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    border: none;
}

.user-action-btn.primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.user-action-btn.secondary {
    background: #f8fafc;
    color: #334155 !important;
    border: 1px solid #e2e8f0;
}

.user-action-btn.secondary:hover {
    background: #ffffff;
    color: #0f172a !important;
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.user-action-btn.ai {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
    border: none;
}

.user-action-btn.ai:hover {
    opacity: 0.95;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.35);
}

/* User Stat Metrics Grid */
.user-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .user-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .user-stats-grid {
        grid-template-columns: 1fr;
    }
}

.user-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none !important;
    transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.02);
}

.user-stat-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
}

.user-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.user-stat-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.user-stat-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.user-stat-icon.rose {
    background: #fff1f2;
    color: #e11d48;
}

.user-stat-icon.emerald {
    background: #ecfdf5;
    color: #059669;
}

.user-stat-info {
    flex: 1;
    min-width: 0;
}

.user-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
}

.user-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    line-height: 1.1;
    margin: 0;
}

.user-stat-desc {
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Sidebar Navigation */
.user-sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.04);
    margin-bottom: 24px;
}

.user-sidebar-profile {
    padding: 14px 12px 18px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-sidebar-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1.5px solid #dbeafe;
}

.user-sidebar-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-sidebar-meta {
    flex: 1;
    min-width: 0;
}

.user-sidebar-name {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-sidebar-email {
    font-size: 12px;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}

.user-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.user-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 10px;
    color: #475569 !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.user-nav-link .nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-nav-link .nav-icon {
    width: 20px;
    text-align: center;
    font-size: 15px;
    color: #64748b;
    transition: color 0.2s ease;
}

.user-nav-link:hover {
    background: #f8fafc;
    color: #0f172a !important;
}

.user-nav-link:hover .nav-icon {
    color: #2563eb;
}

.user-nav-link.active {
    background: #eff6ff !important;
    color: #2563eb !important;
    font-weight: 700;
}

.user-nav-link.active .nav-icon {
    color: #2563eb !important;
}

.user-nav-link.logout {
    color: #ef4444 !important;
    margin-top: 8px;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

.user-nav-link.logout .nav-icon {
    color: #ef4444 !important;
}

.user-nav-link.logout:hover {
    background: #fef2f2 !important;
}

.user-nav-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 9999px;
    background: #f1f5f9;
    color: #475569;
    font-family: ui-monospace, SFMono-Regular, monospace;
}

.user-nav-link.active .user-nav-badge {
    background: #dbeafe;
    color: #1d4ed8;
}

.user-nav-badge.ai-badge {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #ffffff;
    font-size: 10px;
    padding: 2px 6px;
}

/* Sidebar Help Card */
.user-sidebar-help {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 16px;
    padding: 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.2);
}

.user-sidebar-help::before {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    filter: blur(20px);
}

.user-sidebar-help h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
}

.user-sidebar-help p {
    font-size: 12.5px;
    color: #94a3b8;
    margin: 0 0 14px;
    line-height: 1.45;
}

.user-sidebar-help .help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    background: #2563eb;
    color: #ffffff !important;
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none !important;
    transition: all 0.2s ease;
}

.user-sidebar-help .help-btn:hover {
    background: #1d4ed8;
}

/* Main Section Cards */
.user-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.04);
    margin-bottom: 28px;
}

.user-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 24px;
}

.user-card-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #eff6ff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.user-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.01em;
}

.user-card-subtitle {
    font-size: 12.5px;
    color: #64748b;
    margin: 2px 0 0;
}

/* Info Tiles Grid */
.user-info-tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 991px) {
    .user-info-tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .user-info-tiles-grid {
        grid-template-columns: 1fr;
    }
}

.user-info-tile {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all 0.2s ease;
}

.user-info-tile:hover {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.user-info-tile-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.user-info-tile-content {
    flex: 1;
    min-width: 0;
}

.user-info-tile-label {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 3px;
}

.user-info-tile-val {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    word-break: break-word;
}

.user-info-tile-val.empty {
    color: #94a3b8;
    font-weight: 400;
    font-style: italic;
}

/* Modern Dashboard & Services Table */
.user-estate-table-wrap {
    overflow-x: auto;
}

.user-estate-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.user-estate-table thead th {
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 16px;
    border: none;
    background: transparent;
}

.user-estate-table tbody tr {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.user-estate-table tbody tr:hover {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
}

.user-estate-table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #334155;
}

.user-estate-table tbody tr td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-left: 1px solid #f1f5f9;
}

.user-estate-table tbody tr td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-right: 1px solid #f1f5f9;
}

.table-property-card {
    display: flex;
    align-items: center;
    gap: 14px;
}

.table-property-img {
    width: 54px;
    height: 46px;
    border-radius: 8px;
    object-fit: cover;
    background: #e2e8f0;
    flex-shrink: 0;
}

.table-property-meta {
    flex: 1;
    min-width: 0;
}

.table-property-title {
    font-weight: 700;
    color: #0f172a;
    font-size: 14px;
    text-decoration: none !important;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}

.table-property-title:hover {
    color: #2563eb;
}

.table-property-location {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.table-property-price {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
    font-weight: 700;
    color: #0f172a;
    font-size: 14.5px;
}

.table-action-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569 !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-size: 13px;
    cursor: pointer;
}

.table-action-btn:hover {
    background: #2563eb;
    color: #ffffff !important;
    border-color: #2563eb;
}

.table-action-btn.danger:hover {
    background: #ef4444;
    color: #ffffff !important;
    border-color: #ef4444;
}

.table-action-btn.text-btn {
    width: auto;
    padding: 6px 12px;
    gap: 6px;
    font-weight: 600;
    font-size: 12.5px;
}

/* Empty State */
.user-empty-state {
    text-align: center;
    padding: 48px 24px;
}

.user-empty-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #eff6ff;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.user-empty-state h5 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 6px;
}

.user-empty-state p {
    font-size: 13.5px;
    color: #64748b;
    max-width: 420px;
    margin: 0 auto 20px;
    line-height: 1.5;
}

/* Quick Shortcuts 3-Column Grid */
.user-shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 767px) {
    .user-shortcuts-grid {
        grid-template-columns: 1fr;
    }
}

.user-shortcut-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.2s ease;
}

.user-shortcut-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.user-shortcut-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-shortcut-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.user-shortcut-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.user-shortcut-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.user-shortcut-icon.emerald {
    background: #ecfdf5;
    color: #059669;
}

.user-shortcut-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.user-shortcut-desc {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.user-shortcut-link {
    font-size: 12.5px;
    font-weight: 600;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

/* ==========================================================================
   Mobile Sidebar Toggle Navigation
   ========================================================================== */
.user-sidebar-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.user-sidebar-mobile-toggle:hover,
.user-sidebar-mobile-toggle.active {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.user-mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 5px 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: #2563eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.user-toggle-chevron {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.user-sidebar-mobile-toggle.active .user-toggle-chevron {
    transform: rotate(180deg);
}

@media (max-width: 991.98px) {
    .user-sidebar-collapsible {
        display: none;
        margin-top: 14px;
        padding-top: 14px;
        border-top: 1px solid #f1f5f9;
        animation: fadeInDown 0.25s ease-out;
    }

    .user-sidebar-collapsible.show {
        display: block !important;
    }

    .user-sidebar-card {
        margin-bottom: 24px;
    }
}

@media (min-width: 992px) {
    .user-sidebar-collapsible {
        display: block !important;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Form Styles, Upload Avatar & Details
   ========================================================================== */
.user-form-label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}

.user-input-control {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    transition: all 0.2s ease;
}

.user-input-control:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.user-avatar-upload-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}

.user-avatar-preview {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    position: relative;
    border: 2px solid #dbeafe;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #eff6ff;
    overflow: hidden;
}

.user-avatar-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-avatar-file-input {
    display: none;
}

.user-avatar-edit-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1.5px solid #2563eb;
    color: #2563eb;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-avatar-edit-label:hover {
    background: #2563eb;
    color: #ffffff;
}

.user-search-input-wrap {
    position: relative;
}

.user-search-input-wrap input {
    padding-left: 38px;
}

.user-search-input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 14px;
}

/* Order / Appointment Status Progress Steps */
.user-order-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 20px 0 30px;
    position: relative;
}

.user-order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.user-order-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
}

.user-order-step.active .user-order-step-num {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.user-order-step.completed .user-order-step-num {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.user-order-step-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
}
