/* حالت عادی */
#searchBtn {
    width: 48px;
    height: 42px;
    background: #c8a63f;;
    border-radius: 8px;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

/* وقتی لودینگ فعال شود */
#searchBtn.loading {
    cursor: not-allowed;
    opacity: 0.7;
}

/* اسپینر */
#searchBtn.loading::after {
    content: "";
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* مخفی کردن آیکون در حالت لودینگ */
#searchBtn.loading i {
    display: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* جلوگیری از بیرون زدن فیلدها */
.search-row.third input {
    min-width: 0;
}

/* سال کوچکتر */
#searchYear {
    flex: 0.7;
}

/* امتیاز متوسط */
#searchRating {
    flex: 0.9;
    text-align: right;
}

/* دکمه ثابت */
#searchBtn {
    flex: 0 0 44px;
}