#errorField .toast {
    
    border: 2px solid rgba(0, 0, 0, 0.7); /* Koyu renkli, transparan çerçeve */
    background-color: rgba(0, 0, 0, 0.1); /* Hafif şeffaf arka plan */
}
#errorField{
    margin-top:85px;
}
.toast-body .btn-close {
margin-left: auto; /* Buton sağa kayar */
}

/* Butonun rengini değiştirmek için */
.toast-body .btn-close {
background-color: grey; /* Kırmızı renk örneği */

}

/* Hover durumunda butonun rengini değiştirme */
.toast-body .btn-close:hover {
border-color: #fff; /* Kenar rengi */
}
/* Butonu sağa yerleştirir */
.toast-body {
display: flex;
justify-content: space-between; /* Sağda buton, solda içerik */
align-items: center; /* Yükseklik açısından ortalar */
}