.news-box{
    width:100%;
    background-color: black;
    display: flex;
    align-items: center;
    padding: 10px;
    
}
.news-text{
    color:white;
    margin: 10px;
    padding: 5px;
    display: inline-block;
    border-width: 10px;
    border-bottom: 2px solid palevioletred;
}


.fxr-box{
    
    width: 100%;
    
}
.fxr{
    display: flex;
    justify-content: center;
}
.autoShowHide{

  white-space: nowrap; 
  width: 100%; 
  overflow: hidden;
  text-overflow: ellipsis;
  
}
@media(max-width: 600px) {
    .fxr{
        display: flex;
        justify-content: right;
        padding: 5px 0px;
        
    } 
  }
  .deleted_icoo{
    color: red;
  }
  #deleted_btn{
    border: none;
   background-color: transparent;
 }
 #deleted_btn:disabled,
 button[disabled] {
  border: 1px solid #ccc; /* حدود رمادية */
  color: #666666;
  background-color: #f0f0f0; /* خلفية فاتحة */
  cursor: not-allowed; /* شكل مؤشر الماوس */
}

 .alert_errors_msg{
  position: fixed;
  top:0;
  width: 100%;
  margin-bottom: 0px;
  z-index: 20000;
  padding: 5px;
  color: black;
 border-radius: 0;
} 
.banners_img{
  height: auto;
  width: 100%; /* يجعل العرض متجاوبًا مع الحفاظ على النسبة */
  max-width: 100%; /* يضمن أن الصورة لا تتجاوز عرض الحاوية */
  object-fit: cover;
  display: block;
}
.group_name{
 font-size: 17px;
}
.catogres_img{
  width:100%;
  object-fit:cover;
  border-radius: 5px;
  transition: 1s ease all;
}
.catogres_img:hover{
  transform: scale(1.04);
}
.card-title:hover{
  transform: scale(1.05);
}
/************************************البانر الثابت*********************************************/
/* تنسيق الكارد */
.card-static-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2474bc;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.card-static-banner:hover {
  transform: translateY(-5px); /* تأثير تحريك خفيف عند التمرير على الكارد */
}

/* تنسيق الصورة */
.card-static-banner-image img {
  width: 100%;
  height: 200px;
  margin: 0px auto;
  object-fit: cover; /* لضمان أن الصورة تملأ المساحة بدون تشويه */
  border-radius: 10px 0 0 10px; /* جولات متناسقة للصورة من جهة اليسار */
}

/* تنسيق المحتوى النصي */
.card-static-banner-content {
  padding: 20px;
  width: 60%; /* تخصيص عرض المحتوى النصي */
}

.card-static-banner-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.card-static-banner-content p {
  font-size: 1rem;
  
}


@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 48, 73, 0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0, 48, 73, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 48, 73, 0);
  }
}

.pulse {
  animation: pulse 2s infinite;
}
/***************************************************/

/* الصورة الباهتة */
.img-faded {
  opacity: 0.5;
  filter: grayscale(30%);
}

/* استيكر "قريباً" */
.ribbon {
  width: 150px;
  height: 150px;
  overflow: hidden;
  position: absolute;
  z-index: 10;
}

.ribbon-top-left {
  top: -10px;
  left: -10px;
}

.ribbon-top-left span {
  position: absolute;
  display: block;
  width: 200px;
  padding: 8px 0;
  background: linear-gradient(135deg, #264653, #f4a261); /* 🎨 أزرق أفتح + برتقالي ناعم */
  color: #fff;
  font-weight: bold;
  text-align: center;
  transform: rotate(-45deg);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  top: 30px;
  left: -45px;
  font-size: 14px;

  border: 2px solid #e9c46a; /* ذهبي هادئ */
  border-radius: 4px;
}



.disabled-link {
  pointer-events: none;  /* يمنع الضغط */
  cursor: not-allowed;   /* يظهر مؤشر X */
  opacity: 0.8;
}
