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;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Dropdown menüleri daha belirgin yap */
.navbar-nav .dropdown-toggle {
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding-left: 12px !important;
  padding-right: 12px !important;
}

.navbar-nav .dropdown-toggle:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Nested dropdown (submenu) stilleri */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
}

.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
}

.dropdown-submenu > .dropdown-item:hover {
  background-color: #e9ecef;
}

/* Sticky Footer Styles for Forms */
.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 1020;
  margin-top: 2rem;
}

/* Add padding to body to prevent footer overlap */
body {
  padding-bottom: 80px;
}

/* Mobile optimizations for form buttons */
@media (max-width: 576px) {
  .sticky-bottom .btn {
    width: 100%;
  }
  
  .sticky-bottom {
    padding: 1rem !important;
  }
}