﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    background-image: url('/beyaz.jpg');
}
.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}
.page-location {
    min-height: 80vh;
}
.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: lightgray;
    text-align: center;
}
.language-selector-container {
    position: absolute; /* Normal görünümde sağda kalması için */
    right: 20px; /* Sağdan 20px boşluk */
    top: 50%; /* Dikey olarak ortalamak için */
    transform: translateY(-66%); /* Dikey ortalamayı düzeltmek için */
    z-index: 10; /* Üstte görünmesi için */
}

/* Mobil görünüm için */
@media (max-width: 768px) {
    .language-selector-container {
        position: relative; /* Mobilde konumlandırma */
        display: block; /* Mobilde görünür hale getir */
        margin-bottom: 20px; /* Alt boşluk ekleyin */
        transform: translateY(-440%);
        margin-inline-start: 40px;
    }

    .language-selector {
        display: flex; /* Flexbox kullanarak yatay sıralama */
        flex-direction: row; /* Yatay sıralama */
        justify-content: center; /* Ortalamak için */
        flex-wrap: wrap; /* Taşma durumunda satır atlamak için */
    }

    .language-list {
        display: flex; /* Flexbox kullanarak yatay sıralama */
        padding: 0; /* Varsayılan padding'i kaldır */
        margin: 0; /* Varsayılan margin'i kaldır */
        list-style: none; /* Liste stilini kaldır */
    }

        .language-list li {
            margin: 0 4px; /* Her bir dil seçeneği arasında yatay boşluk */
        }

            .language-list li a {
                text-decoration: none; /* Alt çizgiyi kaldır */
                color: black; /* Metin rengini ayarla */
            }

        .language-list img {
            width: 30px; /* Bayrak resimlerinin boyutunu ayarla */
            object-fit: cover; /* Resimlerin alanı kaplamasını sağla */
        }
}
/* iPad Air için (yatay mod) */
@media (min-width: 1024px) {
    .mobile-welcome {
        font-size: 41px;
    }
    .mob-nest {
        min-height: 66vh;
    }
}

.language-selector {
    display: table-caption; /* Use flexbox for layout */
    flex-direction: column; /* Stack items vertically */
}

.language-list {
    list-style: none; /* Remove default list styling */
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

    .language-list li {
        margin-bottom: 5px; /* Space between items */
    }

        .language-list li a {
            text-decoration: none; /* Remove underline from links */
            color: black; /* Set link color */
        }

    .language-list img {
        height: 33.38px; /* Yükseklik */
        width: 50px; /* Set the width of the images */
        object-fit: cover; /* Ensure the image covers the area without distortion */
    }
