/**
 * PedalPress Frontend Styles
 */
.pedalpress-registration-form {
    width: 100%;
    margin: 20px 0;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.pedalpress-form-title {
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
    color: #1d2327;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

.pedalpress-form-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.pedalpress-form-field {
    padding: 0 15px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.pedalpress-label {
    font-weight: 600;
    font-size: 14px;
    color: #3c434a;
    display: inline-block;
    margin-bottom: 8px;
}

.pedalpress-required {
    color: #d63638;
}

.pedalpress-registration-form input[type="text"],
.pedalpress-registration-form input[type="email"],
.pedalpress-registration-form input[type="date"],
.pedalpress-registration-form input[type="file"],
.pedalpress-registration-form textarea,
.pedalpress-registration-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 15px;
    color: #2c3338;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

.pedalpress-registration-form input:focus,
.pedalpress-registration-form textarea:focus,
.pedalpress-registration-form select:focus {
    border-color: #2271b1;
    outline: none;
    box-shadow: 0 0 0 1px #2271b1;
}

/* Option Groups (Radio/Checkbox) */
.pedalpress-options-group {
    padding: 10px 0;
}

.pedalpress-options-group.layout-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pedalpress-options-group.layout-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pedalpress-option-label {
    font-weight: normal !important;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #3c434a;
}

.pedalpress-option-label input {
    margin: 0 !important;
    width: 18px;
    height: 18px;
}

/* HTML Content Block */
.pedalpress-html-content {
    margin: 10px 0;
    padding: 20px;
    background: #f6f7f7;
    border-left: 4px solid #2271b1;
    border-radius: 0 4px 4px 0;
    color: #50575e;
    font-size: 14px;
    line-height: 1.6;
}

/* Submit Button */
.pedalpress-submit-container {
    width: 100%;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.pedalpress-btn-submit {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.pedalpress-btn-submit:hover {
    background: #135e96;
}

.pedalpress-btn-submit:active {
    transform: translateY(1px);
}

/* Responsive */
@media (max-width: 768px) {
    .pedalpress-form-field {
        width: 100% !important;
    }
}
/* Modal Success Styles */
.pedalpress-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    backdrop-filter: blur(5px);
}

.pedalpress-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    animation: ppModalFadeIn 0.3s ease-out;
}

@keyframes ppModalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.pedalpress-modal-header {
    background: #f0fdf4;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #bdf1c9;
    flex-shrink: 0;
}

.pedalpress-modal-body {
    padding: 25px;
    color: #374151;
    line-height: 1.6;
    overflow-y: auto;
    flex-grow: 1;
}

.pedalpress-bank-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.pedalpress-bank-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.pedalpress-bank-row:last-child {
    border-bottom: none;
}

.pedalpress-bank-label {
    font-weight: 600;
    font-size: 0.9em;
    color: #6b7280;
}

.pedalpress-bank-value {
    font-family: monospace;
    font-weight: 700;
    color: #111827;
    background: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
}

.pedalpress-copy-btn {
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 11px;
    cursor: pointer;
    margin-left: 8px;
    transition: background 0.2s;
}

.pedalpress-copy-btn:hover {
    background: #135e96;
}

.pedalpress-modal-close {
    display: block;
    width: 100%;
    padding: 15px;
    background: #f3f4f6;
    border: none;
    border-top: 1px solid #e5e7eb;
    color: #4b5563;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.pedalpress-modal-close:hover {
    background: #e5e7eb;
}
