/* ========================================
   LabFinansgo - Bileşen Stilleri (components.css)
   Overlay, onay modalı, genel butonlar
======================================== */

/* === OVERLAY === */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: none;
}

.overlay.active { display: block; }

/* === ONAY MODALI === */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-box {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-box h3 {
    font-size: 18px;
    color: #000000;
    margin-bottom: 12px;
}

.modal-box p {
    font-size: 14px;
    color: #333333;
    margin-bottom: 24px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-onay {
    background: #d32f2f;
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-onay:hover { background: #b71c1c; }

.btn-iptal {
    background: #f5f5f5;
    color: #000000;
    border: 1px solid #e0e0e0;
    padding: 10px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-iptal:hover { background: #e0e0e0; }
