/* Ayarlar Modalı Stilleri */
.modal { 
    display: none; 
    position: fixed; 
    top: 0; left: 0; 
    width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.6); 
    justify-content: center; 
    align-items: center; 
    z-index: 1000; 
}
.modal-content { 
    background-color: #fff; 
    padding: 25px; 
    border-radius: 20px; 
    width: 85%; 
    max-width: 320px; 
    position: relative; 
    text-align: center; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.close-btn { 
    position: absolute; 
    top: 10px; right: 15px; 
    font-size: 28px; 
    cursor: pointer; 
    color: #8e5a65; 
}
.modal-content h2 { color: #d00000; margin-bottom: 10px; font-size: 20px; }
.modal-content p { font-size: 13px; margin-bottom: 15px; color: #5c3a41; }
#profile-upload { margin-bottom: 15px; font-size: 12px; width: 100%; }