.kct-financial-form-wrap {
    width: 100%;
    margin-top: 10px;
}

.kct-financial-form-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.kct-bank-status {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #f5f5f5;
    color: #333;
}

.kct-bank-status.is-verified {
    background: #eaf8ee;
    color: #1f7a3d;
}

.kct-bank-status.is-pending {
    background: #fff8e6;
    color: #9a6b00;
}

.kct-bank-status.is-rejected {
    background: #fdecec;
    color: #b42318;
}

.kct-financial-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.kct-financial-message p {
    margin: 0 0 8px;
}

.kct-financial-message p:last-child {
    margin-bottom: 0;
}

.kct-financial-message-error {
    background: #fff1f1;
    border-color: #efb3b3;
    color: #8a1f1f;
}

.kct-financial-message-success {
    background: #eefaf1;
    border-color: #a8d8b4;
    color: #1f6b36;
}

.kct-financial-form {
    width: 100%;
}

.kct-form-row {
    margin-bottom: 16px;
}

.kct-form-row label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
}

.kct-financial-form input[type="text"],
.kct-financial-form input[type="email"],
.kct-financial-form input[type="number"],
.kct-financial-form select,
.kct-financial-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
    font-size: 14px;
    color: #333;
}

.kct-financial-form input:focus,
.kct-financial-form select:focus,
.kct-financial-form textarea:focus {
    outline: none;
    border-color: #ff5a5f;
    box-shadow: 0 0 0 3px rgba(255,90,95,0.10);
}

.kct-form-actions {
    margin-top: 20px;
}

.kct-financial-form button,
.kct-financial-form input[type="submit"] {
    background: #ff5a5f;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.kct-financial-form button:hover,
.kct-financial-form input[type="submit"]:hover {
    opacity: 0.92;
}
/* CODIGO NUEVO RETIROS */

.kct-withdraw-panel-wrap {
    width: 100%;
    margin-top: 10px;
}

.kct-withdraw-panel-card {
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.kct-withdraw-summary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.kct-summary-box {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 16px;
}

.kct-summary-box span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.kct-summary-box strong {
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.kct-withdraw-form {
    margin-bottom: 28px;
}

.kct-withdraw-history h3 {
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
}

.kct-withdraw-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.kct-withdraw-table th,
.kct-withdraw-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #ececec;
    text-align: left;
}

.kct-withdraw-table th {
    font-weight: 700;
    color: #333;
    background: #fafafa;
}

.kct-withdraw-status {
    display: inline-block;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.kct-withdraw-status.status-pending {
    background: #fff8e6;
    color: #9a6b00;
}

.kct-withdraw-status.status-paid {
    background: #eaf8ee;
    color: #1f7a3d;
}

.kct-withdraw-status.status-rejected {
    background: #fdecec;
    color: #b42318;
}

.kct-withdraw-minimum-note{
    margin:8px 0 18px;
    font-size:13px;
    color:#666;
}

.kct-btn-primary {
    background: #ff5a5f;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    display: inline-block;
}

.kct-btn-primary:hover {
    opacity: 0.92;
}

@media (max-width: 767px) {
    .kct-withdraw-summary {
        grid-template-columns: 1fr;
    }

    .kct-withdraw-table {
        display: block;
        overflow-x: auto;
    }
}
