/* Modern Vertical Card Widget Style */
.drp-mini-box {
    width: 100%;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 24px 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    margin: 15px 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.drp-mini-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0073aa, #00a0d2);
}

.drp-card-media {
    font-size: 32px;
    line-height: 1;
    margin-top: 4px;
    margin-bottom: 2px;
}

.drp-mini-text { width: 100%; }

.drp-mini-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #0f172a;
    letter-spacing: -0.3px;
}

.drp-mini-desc {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #64748b;
}

.drp-trigger-btn {
    width: 100%;
    max-width: 220px;
    padding: 12px 24px;
    background-color: #0073aa;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 115, 170, 0.2);
    margin-top: 4px;
}

.drp-trigger-btn:hover { 
    background-color: #005177; 
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 115, 170, 0.3);
}

/* Featured Image Çakışmasını Engelleyen Kesin Çözüm Katmanı */
.drp-modal {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 15px !important;
    box-sizing: border-box !important;
    /* Tarayıcıların desteklediği en üst z-index sınırı */
    z-index: 2147483647 !important; 
}

.drp-modal-content {
    background: #ffffff !important;
    width: 100% !important;
    max-width: 400px !important;
    padding: 30px !important;
    border-radius: 16px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    position: relative !important;
    box-sizing: border-box !important;
    animation: drpScaleIn 0.2s ease-out !important;
    z-index: 2147483647 !important;
}

.drp-close {
    position: absolute; right: 20px; top: 15px;
    font-size: 24px; color: #94a3b8; cursor: pointer;
}

.drp-close:hover { color: #1e293b; }

.drp-modal-title { margin: 0 0 15px 0; color: #0f172a; font-size: 20px; font-weight: 700; }

.drp-form-group { margin-bottom: 14px; }

.drp-checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    margin-bottom: 18px;
}

.drp-checkbox-group input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.drp-label { display: block; margin-bottom: 6px; font-weight: 600; color: #475569; font-size: 13px; text-align: left; }

.drp-label-checkbox {
    font-weight: 500;
    color: #475569;
    font-size: 13px;
    cursor: pointer;
    user-select: none;
}

.drp-input {
    width: 100%; padding: 10px; border: 1px solid #cbd5e1;
    border-radius: 8px; box-sizing: border-box; font-size: 14px;
}

.drp-input:focus { 
    border-color: #0073aa; 
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.15);
    outline: none; 
}

.drp-submit-btn {
    width: 100%; padding: 12px; background-color: #10b981;
    color: white; border: none; font-size: 15px; font-weight: 600;
    border-radius: 8px; cursor: pointer;
    transition: background 0.2s;
}

.drp-submit-btn:hover { background-color: #059669; }

.drp-response { margin-top: 12px; font-weight: 600; font-size: 13px; text-align: center; }

@keyframes drpScaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
