/* Main stylesheet for frontend */
.olh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Payment Modal */
.olh-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.olh-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.olh-modal-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.olh-payment-option {
    padding: 15px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.olh-payment-option:hover {
    border-color: #FFA500;
    background: #fff8f0;
}

.olh-payment-option.selected {
    border-color: #FFA500;
    background: #fff8f0;
}