/**
 * BEM Checkout - Account Specific Styles
 *
 * @package BEM_Checkout
 * @since   1.0.0
 */

/* Account Page */
.bem-account-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bem-account-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .bem-account-grid {
        grid-template-columns: 1fr;
    }
}

/* Orders List */
.bem-orders-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bem-order-item {
    background: #212121;
    border: 1px solid #313131;
    border-radius: 8px;
    padding: 20px;
}

.bem-order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.bem-order-number {
    color: #fff;
    font-weight: 600;
}

.bem-order-date {
    color: #a0a0a0;
    font-size: 14px;
}

.bem-order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #313131;
}

.bem-order-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bem-order-detail-label {
    color: #a0a0a0;
    font-size: 12px;
}

.bem-order-detail-value {
    color: #fff;
    font-weight: 500;
}

/* Challenge Details in Account */
.bem-challenge-details {
    background: #0a0a0a;
    border: 1px solid #3E3E3E;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
}

.bem-challenge-details h3 {
    color: #fff;
    margin: 0 0 16px;
    font-size: 18px;
}

.bem-challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.bem-challenge-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #212121;
    border-radius: 6px;
}

.bem-challenge-label {
    color: #a0a0a0;
}

.bem-challenge-value {
    color: #fff;
    font-weight: 500;
}
