/* Reward Points Styling */
.crp-earning-info, .crp-redemption-info {
    border-top: 1px solid #e0e0e0;
}

.crp-earning-info th, .crp-redemption-info th {
    font-weight: bold;
    color: #2c5aa0;
}

.crp-redemption-info input[type="number"] {
    width: 80px;
    margin-right: 10px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.crp-redemption-info button {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    cursor: pointer;
}

.crp-redemption-info button:hover {
    background: #1e3f73;
}

/* My Points Page Styling */
.crp-my-points h3 {
    color: #2c5aa0;
    border-bottom: 2px solid #2c5aa0;
    padding-bottom: 10px;
}

.crp-points-history {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.crp-points-history th,
.crp-points-history td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.crp-points-history th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #2c5aa0;
}

.crp-points-history tr:hover {
    background-color: #f5f5f5;
}

.crp-points-history tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Responsive design */
@media (max-width: 768px) {
    .crp-points-history {
        font-size: 14px;
    }
    
    .crp-points-history th,
    .crp-points-history td {
        padding: 8px 4px;
    }
}
