#lc-cancel-reserva-app,
#lc-cancel-reserva-app * {
    box-sizing: border-box;
    font-family: Inter, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

#lc-cancel-reserva-app {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.lc-cancel-card {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.lc-cancel-header {
    margin-bottom: 20px;
}

.lc-cancel-header h2 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 800;
    color: #0f172a;
}

.lc-cancel-header p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.lc-cancel-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.lc-cancel-field label {
    font-weight: 700;
    font-size: 15px;
    color: #0f172a;
}

.lc-cancel-field input[type="text"] {
    width: 100%;
    min-height: 56px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 0 16px;
    font-size: 16px;
    background: #fff;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lc-cancel-field input[type="text"]:focus {
    border-color: #94a3b8;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.18);
}

.lc-cancel-actions {
    margin-top: 8px;
}

.lc-cancel-btn {
    width: 100%;
    min-height: 54px;
    border: 0;
    border-radius: 16px;
    padding: 0 22px;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
    background: linear-gradient(180deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.lc-cancel-btn:hover {
    transform: translateY(-1px);
}

.lc-cancel-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.lc-cancel-feedback {
    margin-bottom: 18px;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid transparent;
}

.lc-cancel-feedback.is-success {
    background: #ecfdf5;
    color: #065f46;
    border-color: #a7f3d0;
}

.lc-cancel-feedback.is-error {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.lc-cancel-feedback.is-info {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.g-recaptcha {
    overflow: hidden;
}

@media (max-width: 640px) {
    .lc-cancel-card {
        padding: 18px;
        border-radius: 14px;
    }

    .lc-cancel-header h2 {
        font-size: 26px;
    }
}

.lc-cancel-success-state {
    text-align: center;
    padding: 12px 0 4px;
}

.lc-cancel-success-icon {
    font-size: 46px;
    line-height: 1;
    margin-bottom: 14px;
}

.lc-cancel-success-message {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 20px;
}

.lc-cancel-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    color: #ffffff !important;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.lc-cancel-back-btn:hover {
    transform: translateY(-1px);
    color: #ffffff !important;
}