.header-name{
    list-style-type:none;
    /* font-size: 25px; */
    /* text-align: center; */
    padding-left: 1rem;
}
.container-fluid{
    padding: 0 !important;
    margin: 0 !important;
}
body{
    padding: 0 1.5rem 0 1.5rem;
    background-color: #D6DAEF;
}
.branch{
    color: #B11E24;
    font-weight: bold;
    font-size: 20px;

}

.main-name{
    color: #1F1C85;
    font-size: 30px;

    font-weight: bold;
}

.table-cell{
    color: #1F1C85;
}
#clock {
    /* font-size: 25px; */
    height: 100px;
    width: 260px;
    text-align: center;
    border: 2px solid #1F1C85;
    color: white;
    background-color: #1F1C85;
    border-radius: 5px;
    position: absolute;
    top: 2rem;
    right: 2rem;
    box-sizing: border-box;
    padding-top: 1rem;
}

#time{
    font-size: 25px;
}
#date{
    font-size: 18px;
}

.fixed-message{
    text-align: center;
    padding-top: 1rem;
    color: #B11E24;
}

.moving-message{
    overflow: hidden;
    white-space: nowrap;
    color: #1F1C85;
}

.main-name .arabic-text {
    direction: rtl; /* Sets the Arabic text direction */
    unicode-bidi: embed; /* Ensures correct order for Arabic text */
    font-size: 1em; /* Adjust font size if needed */
}
.moving-message h3 {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left-to-right 30s linear infinite;
}

@keyframes scroll-left-to-right {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

.table tr{
    font-size: 22px !important;
}
.table{
    border: 1px solid #000;
}


