/* Main H2 heading fix */
.woocommerce-MyAccount-content h2 {
    margin-bottom: 25px !important;
}

.wlc-rewards-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wlc-rewards-card {
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wlc-rewards-card p {
    margin: 0 0 10px 0;
    font-size: 1.2em;
    color: #555;
}

.wlc-points-display {
    font-size: 4em;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.1;
    margin: 10px 0 20px 0 !important;
}

.wlc-cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1abc9c;
    color: #fff !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 1.1em;
}

.wlc-cta-button:hover {
    background-color: #16a085;
    color: #fff !important;
}

.wlc-history-section {
    margin-top: 25px;
}

.wlc-history-header {
    font-size: 1.8em;
    color: #2c3e50;
    border-bottom: 2px solid #1abc9c;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.wlc-history-table th.points-col,
.wlc-history-table td.points-col {
    text-align: right;
}

.wlc-history-table small {
    font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .wlc-points-display {
        font-size: 3em;
    }
    .wlc-rewards-card p {
        font-size: 1em;
    }
    .wlc-history-header {
        font-size: 1.5em;
    }
}