/* Prana GDPR — Deletion Form */
.gp-gdpr-delete {
    max-width: 560px;
    margin: 0 auto;
    padding: 0;
}
.gp-gdpr-delete-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.gp-gdpr-delete-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: .875rem;
    font-weight: 600;
    color: #1e293b;
}
.gp-gdpr-delete-label--textarea {
    margin-top: 4px;
}
.gp-gdpr-delete-input {
    width: 100% !important;
    padding: 10px 12px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    background: #fff !important;
    color: #333 !important;
    font-size: 16px !important;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}
.gp-gdpr-delete-input:focus {
    outline: none;
    border-color: #2563eb !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}
.gp-gdpr-delete-textarea {
    resize: vertical;
    min-height: 80px;
}
.gp-gdpr-delete-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
}
.gp-gdpr-delete-consent label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #1e293b;
    cursor: pointer;
    line-height: 1.5;
}
.gp-gdpr-delete-consent input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #2563eb;
    flex-shrink: 0;
    cursor: pointer;
}
.gp-gdpr-delete-consent a {
    color: #2563eb;
    text-decoration: underline;
}
.gp-gdpr-delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #dc2626;
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, opacity .2s;
}
.gp-gdpr-delete-btn:hover {
    background: #b91c1c;
}
.gp-gdpr-delete-btn:disabled {
    cursor: not-allowed;
    opacity: .6;
}
.gp-gdpr-delete-msg {
    min-height: 1.25em;
    font-size: .9375rem;
    margin-top: 4px;
}
