/* Frontend CSS for A Beautiful Ceremony Payments */

.abc-payments-container {
    max-width: 500px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    font-family: inherit;
}

.abc-payments-container .abc-heading {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 24px;
}

.abc-payments-container .abc-description {
    margin-bottom: 20px;
    color: #666;
}

.abc-form-group {
    margin-bottom: 15px;
}

.abc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.abc-select,
.abc-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.abc-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: opacity 0.3s;
    flex: 1;
    min-width: 140px;
}

.abc-btn:hover {
    opacity: 0.9;
}

.abc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.abc-btn-primary {
    background-color: #333;
    color: #fff;
}

.abc-btn-stripe {
    background-color: #635bff;
    color: #fff;
}

.abc-btn-paypal {
    background-color: #ffc439;
    color: #000;
}

.abc-loader {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 10px;
}

.abc-back-btn {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}
.abc-back-btn:hover {
    text-decoration: underline;
}
