#bannersContainer{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999; /* أعلى من أي حاجة */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px;
    pointer-events: none; /* يخلي المحتوى اللي تحته يشتغل */
}

/* شكل كل بانر */
.banner{
    width: 90%;
    max-width: 800px;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    animation: slideDown 0.4s ease;
    pointer-events: auto; /* يخلي البانر نفسه قابل للضغط */
}

/* بانر عام */
.banner.public{
    background: linear-gradient(135deg, #84cc16, #4d7c0f);
    color: #1a2e05;
    text-align: center;
}

/* بانر شخصي */
.banner.personal{
    background: linear-gradient(135deg, #facc15, #eab308);
    color: #3f2f00;
    text-align: center;
}

/* انيميشن نزول */
@keyframes slideDown{
    from{
        transform: translateY(-20px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}


.banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.banner-close{
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}


.exam-box.today {
  border-color: #22c55e;
  box-shadow: 0 0 15px rgba(34,197,94,.3);
}

.exam-box.closed {
  opacity: .6;
}

.exam-btn.closed {
  pointer-events: none;
}


/* حاوية الامتحانات */
#exam-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* كل صندوق امتحان */
.exam-box {
    margin-top: 50px;
    background: #22c55e;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    color: white;
      box-shadow: 0 0 15px rgba(34,197,94,.3);
}

/* تأثير عند المرور بالفأرة */
.exam-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* عنوان الامتحان */
.exam-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/* وصف الامتحان */
.exam-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 20px;
}

/* زر الامتحان */
.exam-btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* حالة مفتوح اليوم */
.exam-btn.open {
    background: linear-gradient(90deg, #4CAF50, #45A049);
    color: #fff;
    transition: background 0.3s;
}

.exam-btn.open:hover {
    background: linear-gradient(90deg, #45A049, #3e8e41);
}

/* حالة مغلق */
.exam-btn.closed {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

/* صندوق اليوم */
.exam-box.today {
    border: 2px solid #4CAF50;
}

/* صندوق مغلق */
.exam-box.closed {
    opacity: 0.7;
}
