/* Override CSS برای اطمینان از اعمال رنگ‌های یکپارچه */

/* Footer با گرادیان یکپارچه */
.footer-main {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%) !important;
    background-color: #8A9FFB !important;
}

footer {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%) !important;
    background-color: #8A9FFB !important;
}

/* دکمه‌های Primary */
.btn-primary {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%) !important;
    border: none !important;
}

.btn-outline-primary {
    border: 2px solid #8A9FFB !important;
    color: #8A9FFB !important;
}

.btn-outline-primary:hover {
    background: #8A9FFB !important;
    color: white !important;
}

/* متن‌های Primary */
.text-primary {
    color: #8A9FFB !important;
}

/* فرم‌ها */
.form-control:focus, .form-select:focus {
    border-color: #8A9FFB !important;
    box-shadow: 0 0 0 0.2rem rgba(138, 159, 251, 0.25) !important;
}

/* صفحه 404 */
.error-404-container {
    background: linear-gradient(135deg, #8A9FFB 0%, #6A5ACD 100%) !important;
}

/* آیکون‌ها */
.icon-primary {
    color: #8A9FFB !important;
}

/* متغیرهای CSS */
:root {
    --primary-color: #8A9FFB !important;
    --secondary-color: #6A5ACD !important;
}

/* اطمینان از اعمال تغییرات */
* {
    transition: all 0.3s ease !important;
}
