body {
    background-color: #f8f9fa;
}

.form-container {
    max-width: 600px;
    margin: auto;
}

.result-message {
    margin-top: 20px;
}

header,
footer {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header img {
    max-height: 60px;
}

footer {
    text-align: center;
    margin-top: 50px;
}

footer a {
    color: #0d6efd;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.select-container {
    direction: rtl;
}

.form-select {
    text-align: right;
    --bs-form-select-bg-img: none;
}

/* اضافه کردن آیکون فلش به سمت پایین */
.select-arrow {
    position: absolute;
    left: 10px;
    /* موقعیت آیکون */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* برای نمایش select به صورت راست‌چین */
.custom-select-wrapper {
    position: relative;
}

#popup {
    display: none;
    position: fixed;
    top: 10%;
    /* فاصله از بالای صفحه */
    left: 50%;
    transform: translateX(-50%);
    /* تراز افقی در وسط صفحه */
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 8px;
}

#popup img {
    max-width: 100%;
    max-height: 80vh;
    /* ارتفاع عکس در حالت ریسپانسیو */
    border-radius: 5px;
}

/* استایل برای پس‌زمینه تاریک */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}