i {
        margin: 0px 5px;
}
.logoContainer{
    text-align: center;
    padding: 10px;
}
.resizeLogo{
    max-width: 100px;
}

div.inputbox{
    padding: 0px !important;
    
}
div.inputbox select{
    width: 100% !important;
}
.select2-selection{
    height: 70px !important;
}
div.inputbox .select2-selection{
    padding:20px !important;
    
}
.filterbar{
padding: 8px;
background-color: azure; 
margin: 5px 0px;
font-size: 14px;
font-weight: bold;
border: 2px dashed #3c6b06;
}
.filterbar .row{
    display: flex;
    margin: 10px 5px;
}
.filterbar .row select{
    font-size: 13px;
    padding: 0px 10px;
}
.row div{
    flex: 1
}
.row div:nth-child(2){
    flex: 2
}
.row *{
    height: 30px;
    margin: 2px;
}
.noborder *{
    border: none !important;
}
.checkboxitem label {
    display: inline-block;
    padding-right: 10px;
    white-space: nowrap;
  }
  .checkboxitem input,.checkboxitem label span {
    vertical-align: middle;
  }

/* الخلفية والـ padding للـ Navbar */
.navbar {
    background: linear-gradient(90deg, #038F5B, #04AA6D); /* تدرج حول اللون المطلوب */
    padding: 0.8rem 1.5rem !important;
    position: relative;
}

/* اسم التطبيق على اليسار */
.navbar-brand {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff !important; /* أبيض للوضوح */
}

/* اسم المستخدم في الوسط */
#navbarDropdown {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff !important; /* أبيض */
}

/* زر تسجيل الخروج على اليمين */
.navbar .dropdown-menu {
    display: block; /* يظهر دائمًا */
    position: absolute !important;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    min-width: 100px;
    padding: 0;
    background: none; /* إزالة خلفية الـ dropdown */
    border: none;
    box-shadow: none;
}

.dropdown-item {
    display: inline-block;
 padding: 6px 12px;
    background-color: #E63946; /* أحمر واضح */
    color: #fff !important; 
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: #C92A35; /* أحمر أغمق عند المرور */
    transform: translateY(-2px);
}

/* إزالة أي ألوان غير مرغوب فيها في الروابط */
.nav-link, .dropdown-toggle {
    color: #fff !important;
}

/* animate logo in welcome blade */
@layer utilities {
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

}
 /* welcom page css */
 body.page-with-logo-bg::before {
            content: "";
            position: fixed;
            inset: 0;
            background-image: url('/storage/images/bgBdh.png');
            background-repeat: repeat;
            opacity: 1; /* درجة الشفافية */
            z-index: -1; /* يرسلها للخلف */
        }
 body.page-with-logo-bg header {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    padding: 2rem;
    color: #fff;
}
/*end welcom page css */
input[type="radio"] + span {
    margin-left: 4px; /* يمكنك ضبط القيمة حسب رغبتك */
}

.select2-container .select2-selection--single {
    height: 40px !important;      /* يجعل الارتفاع متناسقاً */
    border-radius: 8px !important; /* للحفاظ على الحواف الدائرية */
    display: flex !important;
    align-items: center !important;
}

.select2-selection__rendered {
    line-height: 38px !important; /* محاذاة النص عمودياً */
}

.select2-selection__arrow {
    height: 38px !important;
}

