.select2>.selection {}

.select2>.selection .select2-selection {
    border-radius: 0px;
    min-height: 50px;
}

.select2>.selection .select2-selection .select2-selection__rendered {
    padding: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-top: 10px;
    margin-right: 5px;
}

.iti inpıt {
    font-size: 16px;
}

.checkBox .form-check-label {
    font-size: 16px !important;
    margin-left: 10px !important;
}


.radio .form-check-label {
    font-size: 16px !important;
    margin-left: 10px !important;
}

.subheader {
    padding-bottom: 0.5rem !important;
}


/* Bildirim Konteynırı */
        #notification-container {
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 9999;
        }

        /* Bildirim Kutusu Stil */
        .notification {
            background-color: #333;
            color: #fff;
            padding: 16px 24px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin-bottom: 10px;
            min-width: 250px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            
            /* Giriş Animasyonu */
            animation: slideIn 0.5s ease forwards;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        /* Başarı (Success) Teması */
        .notification.success {
            border-left: 5px solid #06A0EB;
        }

        /* Kaybolma Animasyonu Sınıfı */
        .fade-out {
            opacity: 0;
            transform: translateX(20px);
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(100%);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }