/* Dashboard Modern UI - scoped to dashboard pages */
.dashboard-skin {
    --dash-bg: #ffffff;
    --dash-panel: #ffffff;
    --dash-border: #e5e7eb;
    --dash-text: #101414;
    --dash-muted: #6b7280;
    --dash-accent: #013DC4;
    --dash-accent-2: #00023e;
    --dash-warm: #00023e;
    --dash-danger: #9c2b2b;
    --dash-shadow: none;
    --dash-shadow-sm: none;
    --dash-radius: 24px;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--dash-text);
    background-color: var(--dash-bg);
}

.dashboard-skin .user-main,
.dashboard-skin .admin-main {
    background: #ffffff;
    min-height: 100vh;
}

@media (min-width: 992px) {

    .dashboard-skin .user-sidebar,
    .dashboard-skin .admin-sidebar {
        transform: translateX(0);
        box-shadow: none;
    }

    .dashboard-skin .user-main,
    .dashboard-skin .admin-main {
        margin-left: var(--sidebar-width);
    }
}

.dashboard-skin .user-sidebar,
.dashboard-skin .admin-sidebar {
    background: #ffffff;
    color: var(--dash-text);
    border-right: 1px solid var(--dash-border);
}

.dashboard-skin .sidebar-header {
    background: #ffffff;
    border-bottom: 1px solid var(--dash-border);
}

.dashboard-skin .sidebar-user-profile {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--dash-border);
}

.dashboard-skin .sidebar-user-avatar,
.dashboard-skin .user-avatar {
    background: linear-gradient(135deg, var(--dash-accent), #00023e);
    color: #ffffff;
}

.dashboard-skin .menu-link {
    color: #6b7280;
    border-radius: 0;
    margin: 0;
    border-left: 3px solid transparent;
}

.dashboard-skin .menu-link .menu-icon {
    color: #6b7280;
    background: transparent;
}

.dashboard-skin .menu-link:hover {
    background: rgba(1, 61, 196, 0.06);
    color: #013DC4;
    border-left-color: #013DC4;
    transform: translateX(0);
    box-shadow: none;
}

.dashboard-skin .menu-link.active {
    background: rgba(1, 61, 196, 0.12);
    color: #013DC4;
    border-left: 4px solid #013DC4;
    box-shadow: none;
    font-weight: 600;
}

/* Remove dot indicator */
.dashboard-skin .menu-link.active::after {
    display: none !important;
}

.dashboard-skin .menu-link.active .menu-icon {
    color: #ffffff;
    background: #013DC4;
}

.dashboard-skin .menu-link:hover .menu-icon {
    color: #013DC4;
    background: rgba(1, 61, 196, 0.1);
}

.dashboard-skin .submenu {
    background: #f8fafc;
    border-radius: 12px;
    margin: 0.25rem 1.5rem;
}

.dashboard-skin .submenu .menu-link {
    margin: 0.15rem 0.6rem;
    border-radius: 10px;
}

.dashboard-skin .user-header,
.dashboard-skin .admin-header {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--dash-border);
    border-radius: 20px;
    box-shadow: none;
    margin: 16px 24px 0;
    padding: 0.75rem 1.5rem;
    height: auto;
    backdrop-filter: blur(12px);
}

.dashboard-skin .page-title {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dash-text);
}

.dashboard-root {
    padding: 24px;
    margin-top: 16px;
}

.dashboard-panel {
    background: var(--dash-panel);
    border: 1px solid var(--dash-border);
    border-radius: 32px;
    padding: 28px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    animation: dash-panel-in 0.8s ease both;
}

.dashboard-panel::before {
    content: none;
}

.dashboard-panel>* {
    position: relative;
    z-index: 1;
}

.dash-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.dash-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: var(--dash-muted);
    font-weight: 700;
}

.dash-hero h2 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 2rem;
    margin: 0.25rem 0 0;
}

.dash-subtitle {
    margin: 0.35rem 0 0;
    color: var(--dash-muted);
}

.dash-hero__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dash-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--dash-border);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--dash-muted);
}

.dash-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dash-accent), #00023e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.metric-card {
    background: #ffffff;
    border: 1px solid var(--dash-border);
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: dash-rise 0.6s ease both;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.metric-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.metric-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.metric-icon.is-blue {
    background: linear-gradient(135deg, #013DC4, #00023e);
}

.metric-icon.is-green {
    background: linear-gradient(135deg, #00023e, #2f8a5a);
}

.metric-icon.is-cyan {
    background: linear-gradient(135deg, #64748b, #94a3b8);
}

.metric-icon.is-amber {
    background: linear-gradient(135deg, #00023e, #c8a97a);
}

.metric-icon.is-red {
    background: linear-gradient(135deg, #9c2b2b, #c25a5a);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--dash-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.metric-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dash-text);
}

.metric-meta {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.metric-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--dash-muted);
}

.metric-toggle input {
    accent-color: var(--dash-accent);
}

.dash-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(1, 61, 196, 0.12);
    color: var(--dash-accent);
    font-size: 0.75rem;
    font-weight: 600;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    margin-top: 24px;
}

.dash-card {
    background: #ffffff;
    border: 1px solid var(--dash-border);
    border-radius: 20px;
    box-shadow: none;
    padding: 20px;
}

.dash-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.dash-card__title {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.dash-card__body {
    color: var(--dash-text);
}

.dash-actions {
    display: grid;
    gap: 10px;
}

.dash-empty {
    text-align: center;
    color: var(--dash-muted);
    padding: 1.5rem 1rem;
}

.dash-empty i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.dash-section-title {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-weight: 700;
    color: var(--dash-text);
    margin-bottom: 0.75rem;
}

.dash-banner {
    background: linear-gradient(135deg, #013DC4, #00023e);
    color: #ffffff;
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: none;
}

.dash-banner__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dash-banner__icon {
    font-size: 1.75rem;
    opacity: 0.95;
}

.dash-banner__label {
    font-weight: 600;
}

.dash-banner__amount {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Timeline */
.dashboard-root .timeline {
    position: relative;
    padding-left: 26px;
}

.dashboard-root .timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--dash-accent), transparent);
}

.dashboard-root .timeline-item {
    position: relative;
    margin-bottom: 16px;
}

.dashboard-root .timeline-marker {
    position: absolute;
    left: -5px;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--dash-accent);
    box-shadow: none;
}

.dashboard-root .timeline-content {
    background: #f9fafb;
    border: 1px solid var(--dash-border);
    border-radius: 14px;
    padding: 14px 16px;
}

.dashboard-root .timeline-title {
    font-weight: 600;
    margin-bottom: 6px;
}

.dashboard-root .timeline-time {
    font-size: 0.85rem;
    color: var(--dash-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mission cards (customer & professional dashboards) */
.dashboard-root .mission-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 0;
    box-shadow: none;
    border: 1px solid var(--dash-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dashboard-root .mission-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.dashboard-root .mission-card-body {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex: 1;
}

.dashboard-root .mission-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-root .mission-icon {
    font-size: 1.5rem;
    color: #4b5563;
}

.dashboard-root .mission-count {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dash-text);
}

.dashboard-root .mission-count-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dash-muted);
}

.dashboard-root .mission-footer {
    padding: 12px 18px;
    background: #f9fafb;
    border-top: 1px solid var(--dash-border);
}

.dashboard-root .mission-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.dashboard-root .mission-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--dash-accent);
    margin: 0;
}

.dashboard-root .mission-checkbox label {
    font-size: 0.8rem;
    color: var(--dash-muted);
}

.dashboard-root .mission-card-blue .mission-icon-wrapper {
    background: rgba(47, 106, 248, 0.12);
}

.dashboard-root .mission-card-green .mission-icon-wrapper {
    background: rgba(22, 163, 74, 0.12);
}

.dashboard-root .mission-card-info .mission-icon-wrapper,
.dashboard-root .mission-card-cyan .mission-icon-wrapper {
    background: rgba(6, 182, 212, 0.12);
}

.dashboard-root .mission-card-orange .mission-icon-wrapper,
.dashboard-root .mission-card-orange-light .mission-icon-wrapper {
    background: rgba(245, 158, 11, 0.15);
}

.dashboard-root .mission-card-red .mission-icon-wrapper {
    background: rgba(239, 68, 68, 0.12);
}

.dashboard-root .mission-card-grey .mission-icon-wrapper {
    background: rgba(107, 114, 128, 0.12);
}

/* Total spent bar */
.dashboard-root .total-spent-bar {
    background: linear-gradient(135deg, #013DC4, #00023e);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: none;
    color: white;
}

.dashboard-root .total-spent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.dashboard-root .total-spent-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dashboard-root .total-spent-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.dashboard-root .total-spent-amount {
    font-size: 1.5rem;
    font-weight: 700;
}

.dashboard-root .total-spent-note {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* Cards inside dashboards */
.dashboard-root .card {
    border: 1px solid var(--dash-border);
    border-radius: 20px;
    box-shadow: none;
    background: #ffffff;
}

.dashboard-root .card-header {
    background: transparent;
    border-bottom: 1px solid var(--dash-border);
    border-radius: 20px 20px 0 0;
}

.dashboard-root .card-header h6,
.dashboard-root .card-header h5 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-weight: 700;
}

.dashboard-root .card-body {
    padding: 1.5rem;
}

.dashboard-root .card-footer {
    background: transparent;
    border-top: 1px solid var(--dash-border);
    border-radius: 0 0 20px 20px;
}

.dashboard-root .btn {
    border-radius: 999px;
    font-weight: 600;
}

.dashboard-root .btn-ghost {
    background: #ffffff;
    border: 1px solid var(--dash-border);
    color: var(--dash-text);
}

.dashboard-root .btn-ghost:hover {
    background: rgba(1, 61, 196, 0.12);
    color: #00023e;
}

.dashboard-root .btn-outline-danger {
    border-color: #9c2b2b;
    color: #9c2b2b;
}

.dashboard-root .btn-outline-danger:hover {
    background: rgba(156, 43, 43, 0.1);
    color: #9c2b2b;
}

.dashboard-root .btn-outline-primary {
    border-color: var(--dash-accent);
    color: var(--dash-accent);
}

.dashboard-root .btn-outline-primary:hover {
    background: rgba(47, 106, 248, 0.12);
    color: var(--dash-accent);
}

.dashboard-root .cursor-none {
    cursor: not-allowed;
}

/* Reviews */
.dashboard-root .reviews-container {
    max-height: 450px;
    overflow-y: auto;
}

.dashboard-root .review-item:hover {
    background: #f8fafc;
}

.dashboard-root .rating-number {
    color: var(--dash-warm);
}

/* Subscription section */
.dashboard-root .subscription-main-card {
    background: #f9fafb;
    border-radius: 18px;
}

.dashboard-root .subscription-detail-card {
    background: #ffffff;
    border-radius: 18px;
}

.dashboard-root .subscription-badge-icon {
    background: rgba(47, 106, 248, 0.12);
    border-radius: 16px;
}

.dashboard-root .subscription-countdown {
    background: #f9fafb;
    border: 1px dashed #93c5fd;
}

.dashboard-root .border-left-primary {
    border-left: 4px solid var(--dash-accent);
}

.dashboard-root .border-left-success {
    border-left: 4px solid var(--dash-accent-2);
}

.dashboard-root .border-left-info {
    border-left: 4px solid #00023e;
}

.dashboard-root .border-left-warning {
    border-left: 4px solid var(--dash-warm);
}

.dashboard-root .border-left-danger {
    border-left: 4px solid var(--dash-danger);
}

.dashboard-root .step-icon {
    padding: 18px 12px;
    border-radius: 16px;
    background: #f9fafb;
    border: 1px solid var(--dash-border);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dashboard-root .step-icon:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.dashboard-root .quick-actions .btn,
.dashboard-root .services-grid .btn {
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dashboard-root .quick-actions .btn:hover,
.dashboard-root .services-grid .btn:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

/* Animation */
@keyframes dash-panel-in {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.99);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes dash-rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.metric-grid .metric-card:nth-child(1) {
    animation-delay: 0.05s;
}

.metric-grid .metric-card:nth-child(2) {
    animation-delay: 0.1s;
}

.metric-grid .metric-card:nth-child(3) {
    animation-delay: 0.15s;
}

.metric-grid .metric-card:nth-child(4) {
    animation-delay: 0.2s;
}

@media (max-width: 1200px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-root {
        padding: 16px;
    }

    .dashboard-panel {
        padding: 20px;
        border-radius: 24px;
    }

    .dash-hero h2 {
        font-size: 1.6rem;
    }

    .dash-date {
        width: 100%;
        justify-content: center;
    }

    .dash-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .dashboard-skin .user-header,
    .dashboard-skin .admin-header {
        margin: 12px 16px 0;
        padding: 0.75rem 1rem;
    }
}

/* Customer dashboard full redesign */
.customer-dashboard .customer-shell {
    padding: 28px;
}

.customer-dashboard .customer-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: 24px 28px;
    box-shadow: none;
    margin-bottom: 24px;
}

.customer-dashboard .hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.75rem;
    color: #6b7280;
    font-weight: 700;
}

.customer-dashboard .customer-hero h2 {
    font-size: 2rem;
    margin: 0.4rem 0 0.6rem;
}

.customer-dashboard .hero-subtitle {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.customer-dashboard .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.customer-dashboard .hero-right {
    display: grid;
    gap: 16px;
}

.customer-dashboard .hero-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 18px;
}

.customer-dashboard .hero-card.soft {
    background: #ffffff;
}

.customer-dashboard .hero-card__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    font-weight: 700;
}

.customer-dashboard .hero-card__value {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.customer-dashboard .hero-card__meta {
    color: #6b7280;
    margin-top: 0.4rem;
    font-size: 0.9rem;
}

.customer-dashboard .hero-card__progress {
    margin-top: 1rem;
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.customer-dashboard .hero-card__progress span {
    display: block;
    height: 100%;
    width: 62%;
    background: linear-gradient(135deg, #013DC4, #00023e);
    border-radius: 999px;
}

.customer-dashboard .customer-section {
    margin-bottom: 24px;
}

.customer-dashboard .section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}

.customer-dashboard .section-head h3 {
    font-size: 1.3rem;
    margin: 0;
}

.customer-dashboard .section-head span {
    color: #6b7280;
    font-size: 0.9rem;
}

.customer-dashboard .stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.customer-dashboard .stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    gap: 12px;
    align-items: center;
    box-shadow: none;
}

.customer-dashboard .stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(1, 61, 196, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #013DC4;
    font-size: 1.2rem;
}

.customer-dashboard .stat-label {
    color: #6b7280;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.customer-dashboard .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.customer-dashboard .stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(1, 61, 196, 0.12);
    color: #013DC4;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 6px;
}

.customer-dashboard .customer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.customer-dashboard .dash-card {
    border-radius: 20px;
    padding: 0;
}

.customer-dashboard .dash-card__header {
    padding: 18px 20px 0;
}

.customer-dashboard .dash-card__header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.customer-dashboard .dash-card__body {
    padding: 18px 20px 20px;
}

.customer-dashboard .action-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .customer-dashboard .action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.customer-dashboard .action-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #111827;
    font-weight: 600;
}

.customer-dashboard .action-pill:hover {
    background: rgba(1, 61, 196, 0.1);
    color: #013DC4;
}

.customer-dashboard .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
}

.customer-dashboard .service-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    font-weight: 600;
}

.customer-dashboard .activity-list {
    display: grid;
    gap: 12px;
}

.customer-dashboard .activity-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    transition: transform 0.2s ease;
}

.customer-dashboard .activity-item:hover {
    transform: translateY(-2px);
    box-shadow: none;
}

.customer-dashboard .activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(1, 61, 196, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #013DC4;
}

.customer-dashboard .activity-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.customer-dashboard .activity-time {
    color: #6b7280;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.customer-dashboard .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.customer-dashboard .step-card {
    border-radius: 18px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
}

.customer-dashboard .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(1, 61, 196, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #013DC4;
    margin-bottom: 12px;
}

.customer-dashboard .step-card h5 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.customer-dashboard .step-card p {
    color: #6b7280;
    margin: 0;
}

@media (max-width: 992px) {
    .customer-dashboard .customer-shell {
        padding: 18px;
    }

    .customer-dashboard .customer-hero {
        grid-template-columns: 1fr;
    }
}

/* Hide dropdown arrow from profile icon (Bootstrap default) */
.dashboard-skin .user-info .dropdown-toggle::after,
.dashboard-skin .user-avatar.dropdown-toggle::after {
    display: none !important;
}

/* Fix dropdown alignment and prevent overlap */
.dashboard-skin .user-info {
    position: relative;
}

.dashboard-skin .user-info .dropdown-menu {
    margin-top: 2px !important;
    top: calc(100% + 2px) !important;
    left: auto !important;
    right: 0 !important;
    min-width: 200px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 4px 0;
}

.dashboard-skin .user-info .dropdown-item {
    padding: 10px 16px;
    font-size: 0.9rem;
    color: #374151;
    transition: background-color 0.15s ease;
}

.dashboard-skin .user-info .dropdown-item:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.dashboard-skin .user-info .dropdown-item i {
    width: 18px;
    text-align: center;
}

/* Remove dark blue strip at bottom, keep white background */
.customer-dashboard .customer-shell {
    background: #ffffff;
    padding-bottom: 28px;
}

.customer-dashboard {
    background: #ffffff;
}

@media (max-width: 768px) {
    .customer-dashboard .customer-shell {
        padding: 16px;
    }

    .customer-dashboard .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}