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 {
  margin-bottom: 60px;
}


.language-switcher {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
    padding: 16px;
    font-family: 'Segoe UI', sans-serif;
}

.language-switcher {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    padding: 16px;
}


/*Dil butonları*/
    .language-switcher a {
        width: 44px;
        height: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color: black;
        font-weight: bold;
        font-family: 'Segoe UI', sans-serif;
        text-decoration: none;
        font-size: 14px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        background-size: cover;
        background-position: center;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .language-switcher a:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 16px rgba(0,0,0,0.25);
        }

        /* Türkçe butonu - Türk bayrağı arka plan */
        .language-switcher a.tr {
            background-image: url('/images/turkish.png');
        }

        /* İngilizce butonu - İngiliz bayrağı arka plan */
        .language-switcher a.en {
            background-image: url('/images/english.png');
        }



.content-body {
    font-size: 1rem;
    color: #000;
    text-align: justify;
}


section {
    border-radius: 8px;
}

h1 {
    text-transform: uppercase;
}
