/* Özel CSS - Buton Renk Güncellemeleri */

/* Tüm Primary Butonları Navbar Rengi Yap */
.btn-primary {
    background: #5b21b6 !important;
    border-color: #5b21b6 !important;
    color: white !important;
}

.btn-primary:hover {
    background: #4c1d95 !important;
    border-color: #4c1d95 !important;
    color: white !important;
}

.btn-primary:focus,
.btn-primary:active {
    background: #4c1d95 !important;
    border-color: #4c1d95 !important;
    box-shadow: 0 0 0 0.2rem rgba(91, 33, 182, 0.25) !important;
}

/* Submit Butonları */
.btn-submit,
button[type="submit"] {
    background: #5b21b6 !important;
    border-color: #5b21b6 !important;
    color: white !important;
}

.btn-submit:hover,
button[type="submit"]:hover {
    background: #4c1d95 !important;
    border-color: #4c1d95 !important;
}

/* Create Butonları */
.btn-create {
    background: #5b21b6 !important;
    border-color: #5b21b6 !important;
    color: white !important;
}

.btn-create:hover {
    background: #4c1d95 !important;
    border-color: #4c1d95 !important;
}

/* Gradient'lı Butonları Düz Renk Yap */
.btn-primary,
.btn-submit,
.btn-create,
button[type="submit"] {
    background-image: none !important;
}