﻿/* Özel Swal Popup Stili */
.custom-swal-popup {
    /* Popup için genel stil özelleştirmeleri */
    border-radius: 10px;
    padding: 20px;
    /* Diğer stil özelliklerini ekleyebilirsiniz */
}

/* Özel Confirm Butonu Stili */
.custom-confirm-button {
    background-color: #28a745 !important; /* Yeşil arka plan */
    color: white !important; /* Beyaz yazı rengi */
    border: none !important; /* Kenarlık yok */
    padding: 10px 20px !important; /* İç boşluk */
    margin-right: 10px !important; /* Sağ boşluk */
    font-size: 16px !important; /* Yazı boyutu */
    border-radius: 5px !important; /* Köşe yuvarlama */
    cursor: pointer !important; /* İmleç pointer */
    transition: background-color 0.3s ease; /* Hover efekti için geçiş */
}

    .custom-confirm-button:hover {
        background-color: #218838 !important; /* Hover'da biraz koyu yeşil */
    }

/* Özel Cancel Butonu Stili */
.custom-cancel-button {
    background-color: #dc3545 !important; /* Kırmızı arka plan */
    color: white !important; /* Beyaz yazı rengi */
    border: none !important; /* Kenarlık yok */
    padding: 10px 20px !important; /* İç boşluk */
    margin-left: 10px !important; /* Sol boşluk */
    font-size: 16px !important; /* Yazı boyutu */
    border-radius: 5px !important; /* Köşe yuvarlama */
    cursor: pointer !important; /* İmleç pointer */
    transition: background-color 0.3s ease; /* Hover efekti için geçiş */
}

    .custom-cancel-button:hover {
        background-color: #c82333 !important; /* Hover'da biraz koyu kırmızı */
    }