/* İlgili custom-file-input için stiller */
.custom-file-input {
    cursor: pointer;
    padding: 10px; /* Dosya seçme alanının boyutunu ayarlayabilirsiniz */
}

/* Resim div'i için stiller */
.mt-3 {
    margin-top: 15px; /* İsteğe bağlı olarak yüksekliği ayarlayabilirsiniz */
    text-align: center; /* Resimi merkezlemek için */
}

/* Seçilen resim için stiller */
.img-fluid {
    max-width: 100%; /* Resmi ekrana sığacak şekilde ayarlayın */
    height: auto; /* Oranları koruyun */
    border: 1px solid #ccc; /* İsteğe bağlı bir kenarlık ekleyin */
    padding: 10px; /* İsteğe bağlı iç kenarlık ekleyin */
}

/*Tüm input ve textarea readonly arkaplan rengini değiştir*/
input[readonly], textarea[readonly] {
    background-color: #eee !important;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
