.account-wrapper {
        max-width: 1000px;
        margin: 100px auto;
        padding: 0 20px;
        font-family: 'Montserrat', sans-serif;
        color: #333;
    }
    .account-header {
        text-align: center;
        margin-bottom: 50px;
    }
    .account-header h1 {
        font-family: 'Cinzel', serif;
        font-size: 2.5rem;
        color: #121212;
        margin-bottom: 10px;
    }
    .account-header p {
        color: #888;
        letter-spacing: 1px;
    }
    
    .orders-card {
        background: #fff;
        border: 1px solid #eaeaea;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }
    .orders-card h2 {
        font-family: 'Cinzel', serif;
        font-size: 1.5rem;
        border-bottom: 1px solid #D4AF37;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    /* Table Styling */
    .order-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }
    .order-table th {
        background-color: #1A1A1A;
        color: #D4AF37;
        font-family: 'Cinzel', serif;
        font-weight: 400;
        padding: 15px;
    }
    .order-table td {
        padding: 15px;
        border-bottom: 1px solid #f0f0f0;
        vertical-align: middle;
    }
    .order-table tr:last-child td {
        border-bottom: none;
    }

    /* Status Badges */
    .status-badge {
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
    .status-pending { background: #fff3cd; color: #856404; }
    .status-paid { background: #d4edda; color: #155724; }
    .status-shipped { background: #cce5ff; color: #004085; }
    .status-failed { background: #f8d7da; color: #721c24; }

    @media (max-width: 768px) {
        .order-table th, .order-table td { padding: 10px; font-size: 0.9rem; }
        .status-badge { padding: 4px 8px; font-size: 0.7rem; }
    }