.wallet-section {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    max-width: 100%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.wallet-section h3 {
    margin: 0 0 15px 0;
    font-size: 1.2em;
    color: #333;
}

.wallet-content {
    padding: 0;
}

.wallet-section td {
    padding: 15px !important;
}

.wallet-balance {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #eee;
}

.wallet-message {
    margin: 10px 0;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
}

.wallet-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wallet-message.info {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

.wallet-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#apply-wallet-payment {
    background-color: #007bff !important;
    color: white !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 4px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    width: 100%;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    text-transform: none;
}

#apply-wallet-payment:hover {
    background-color: #0056b3 !important;
    transform: translateY(-1px);
}

#apply-wallet-payment:disabled {
    background-color: #ccc !important;
    cursor: not-allowed;
    transform: none;
}

.wallet-discount-message {
    margin-top: 10px;
    padding: 10px;
    font-size: 14px;
    text-align: center;
    display: none;
}

/* Loading state */
#apply-wallet-payment.loading {
    position: relative;
    color: transparent !important;
}

#apply-wallet-payment.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s infinite linear;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
} 