/**
 * WooCommerce Instalments - Frontend Styles
 * Minimal styling - allows theme customization
 */

.wci-instalment-options-wrapper,
.wci-variable-instalment-options-wrapper {
    margin: 1em 0;
    padding: 1em;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.wci-options-title {
    margin: 0 0 0.75em 0;
}

.wci-payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}

.wci-payment-option {
    display: flex;
    align-items: center;
    padding: 0.75em;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.wci-payment-option:hover {
    border-color: #999;
}

.wci-payment-option input[type="radio"] {
    margin-right: 0.75em;
    flex-shrink: 0;
}

.wci-payment-option input[type="radio"]:checked + .wci-option-label {
    /* Inherits theme styling */
}

.wci-payment-option:has(input[type="radio"]:checked) {
    border-color: #0073aa;
}

.wci-option-label {
    /* Inherits theme styling */
}

.wci-number-payments {
    margin-left: 0.5em;
}

.wci-option-detail {
    /* Inherits theme styling */
}
