/**
 * Ban Modal ve OCR Processing Modal stilleri
 * Not: Bu dosya style.css'ten ayrı tutulur (ana CSS'i bozma riskini sıfırlar).
 */

/* DenizLink Theme - Ban Modal Styles */
#user-ban-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.ban-modal-content {
    background: rgba(0, 0, 0, 0.92);
    border: 2px solid rgba(0, 255, 136, 0.7);
    border-radius: 12px;
    padding: 2rem;
    max-width: 520px;
    width: 92%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

.ban-icon {
    font-size: 80px;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.ban-modal-content h2 {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.ban-message {
    color: #d9ffe9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ban-message strong {
    color: #ff4444;
    font-size: 1.05rem;
}

.ban-modal-content .btn,
.ban-modal-content button {
    background: rgba(0, 255, 136, 0.15);
    border: 1px solid #00ff88;
    color: #00ff88;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s ease;
}

.ban-modal-content .btn:hover,
.ban-modal-content button:hover {
    background: rgba(0, 255, 136, 0.25);
    border-color: #00cc66;
}

/* OCR Processing Modal */
#ocr-processing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#ocr-processing-modal .modal-content {
    background: rgba(0, 0, 0, 0.92);
    border: 2px solid rgba(0, 255, 136, 0.7);
    border-radius: 12px;
    padding: 2rem;
    max-width: 420px;
    width: 92%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
}

#ocr-processing-modal h3 {
    color: #00ff88;
    margin-bottom: 1rem;
}

#ocr-processing-modal p {
    color: #d9ffe9;
    margin-bottom: 1.5rem;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00ff88;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 768px) {
    .ban-modal-content,
    #ocr-processing-modal .modal-content {
        padding: 1.5rem;
    }
    .ban-icon {
        font-size: 60px;
    }
}

