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;
}

/* Sağ Üst Sabit Home Butonu */
.home-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    color: #1d1d1f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 9999; /* Her şeyin üstünde dursun */
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

    .home-button:hover {
        background-color: #0071e3; /* Apple Mavisi */
        color: white;
        transform: scale(1.1) rotate(-10deg); /* Hafif büyüme ve dönme efekti */
        box-shadow: 0 8px 25px rgba(0,113,227,0.4);
    }