.confirmDialogOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none; /* Başlangıçta görünmez */
}

.confirmDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    width: 400px;
    z-index: 10000;
    display: none; /* Başlangıçta görünmez */
    opacity: 0; /* Başlangıçta görünmez */
}

.confirm-dialog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #ccc;
}

    .confirm-dialog-header h3 {
        margin: 0;
        font-size: 18px;
    }

.confirm-close-button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 20px;
}

.confirm-dialog-message {
    padding: 0px 15px;
    font-size: 16px;
    color: #333;
}

.confirm-dialog-footer {
    display: flex;
    justify-content: flex-end;
    padding: 10px 15px;
    border-top: 1px solid #ccc;
    margin-top:10px;
}

.confirm-confirm-button, .confirm-cancel-button {
    background-color: #4CAF50; /* Yeşil buton rengi */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
    transition: background-color 0.3s;
}

    .confirm-confirm-button:hover {
        background-color: #45a049; /* Hover efekti */
    }

.confirm-cancel-button {
    background-color: #f44336; /* Kırmızı buton rengi */
}

    .confirm-cancel-button:hover {
        background-color: #e53935; /* Hover efekti */
    }

    /* İkonlar */
    .confirm-confirm-button i, .confirm-cancel-button i {
        margin-right: 5px; /* İkon ile metin arasında boşluk */
    }


@keyframes slideDown {
    0% {
        top: -100%; /* Ekranın dışında yukarıda başlar */
        opacity: 0; /* Görünmez */
    }

    100% {
        top: 30%; /* Ekranın üst kısmında, ortada durur */
        opacity: 1; /* Görünür */
    }
}

@keyframes slideUp {
    0% {
        top: 30%;
        opacity: 1;
    }

    100% {
        top: -100%;
        opacity: 0;
    }
}