/* Customer profile page specific styles (moved from customer-history.html) */

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-panel);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
}

.header {
    background: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.logo-small {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary);
}

.header-actions {
    display: flex;
    gap: 12px;
}
