html {
    
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* DÜZELTİLDİ: iPhone ekran uyumu */
@media (max-width: 576px) {
    .modal-lg {
        max-width: 95% !important;
        margin: auto;
    }
}

/* Dosya listesi görünümü */
#fileList {
    max-height: 200px;
    overflow-y: auto;
    padding-left: 0;
}

/* DÜZELTİLDİ: iOS için scroll fix */
body.modal-open {
    overflow: hidden;
}

/* iOS için modal içeriği scroll edilebilir olmalı */
.modal {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

/* Modal backdrop fix */
.modal-backdrop {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1040;
}

.modal-content {
    border-radius: 1rem; /* daha yuvarlatılmış köşeler */
    box-shadow: 0 4px 20px rgba(0,0,0,0.2); /* daha soft gölge */
}

.modal-body {
    font-size: 0.9rem;
    line-height: 1.5;
}