/* استایل‌های اطلاعیه سایت */
.site-notice {
    background-color: #1a237e;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    width: 100%;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.site-notice-text {
    margin: 0;
    font-size: 0.9rem;
    font-family: 'IRANSansWeb', sans-serif;
    line-height: 1.5;
    color: #ffffff;
}

/* تنظیم padding برای body */
body {
    padding-top: 45px !important;
} 