#countdown-timer-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff; /* پس‌زمینه سفید */
    color: #000; /* رنگ پیش‌فرض مشکی */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    border-bottom: 2px solid #ccc;
    z-index: 9999;
    direction: rtl; /* برای راست‌چین بودن متن فارسی */
    flex-wrap: wrap; /* اجازه شکست در موبایل */
}

#countdown-text {
    font-size: 17px;
    font-weight: 500;
    margin-left: 15px; /* فاصله بین متن و تایمر */
    color: #000; /* رنگ مشکی متن */
    text-align: center;
}

#countdown-timer {
    font-size: 28px;
    font-weight: bold;
    color: #d40000; /* رنگ قرمز تایمر */
    direction: ltr; /* برای نمایش درست اعداد */
    margin-top: 5px; /* فاصله تایمر از متن */
}

/* حالت موبایل و تبلت (عرض کمتر از 768px) */
@media (max-width: 768px) {
    #countdown-timer-container {
        flex-direction: column; /* نمایش در یک ستون */
        padding: 10px 0;
    }

    #countdown-text {
        font-size: 16px; /* کمی کوچک‌تر برای موبایل */
        margin-left: 0;
        margin-bottom: 8px; /* فاصله بیشتر برای موبایل */
    }

    #countdown-timer {
        font-size: 24px; /* اندازه تایمر کمی کوچک‌تر برای موبایل */
        margin-top: 8px; /* فاصله بیشتر از متن */
    }
}

/* حالت تبلت (عرض بین 768px و 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    #countdown-timer-container {
        flex-direction: row; /* نمایش در کنار هم در تبلت */
    }

    #countdown-text {
        font-size: 18px;
        margin-left: 10px; /* فاصله مناسب برای تبلت */
    }

    #countdown-timer {
        font-size: 26px; /* کمی کوچکتر برای تبلت */
    }
}
