﻿/* Customer Layout Styles */
:root {
    --primary-color: #fe6347;
    --secondary-color: #2d3436;
    --bg-light: #f8f9fa;
    --border-color: #eee;
    --text-main: #2d3436;
    --text-muted: #777;
}

body {
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    color: var(--secondary-color);
    margin: 0;
    scroll-behavior: smooth;
}

/* Mobile Header */
.mobile-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center the title */
    height: 45px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.header-back-btn {
    position: absolute;
    left: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 35px;
    height: 35px;
}

    .header-back-btn:hover {
        color: var(--primary-color);
        transform: translateX(-2px);
        text-decoration: none;
    }

    .header-back-btn:active {
        opacity: 0.6;
    }

.header-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    max-width: 65%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-spacer {
    display: none;
}

.dynamic-section {
    width: 100%;
}
