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 rgba(255, 107, 157, 0.25);
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  padding-bottom: 80px;
  min-height: 100vh;
  background-color: #fef5f8;
  background: linear-gradient(to bottom, #fff5f9 0%, #fef5f8 100%);
  display: flex;
  flex-direction: column;
}

/* Modern Navigation Bar */
.modern-navbar {
  background: linear-gradient(135deg, #fff 0%, #fff5f9 100%) !important;
  border-bottom: 2px solid #ffe5f0;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.1);
}

.navbar-brand {
  text-decoration: none;
  padding: 0.5rem 0;
  transition: transform 0.2s ease;
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.logo-icon {
  font-size: 2rem;
  margin-right: 0.75rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.3);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff6b9d;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
}

.modern-nav-links {
  gap: 0.5rem;
  margin-left: 2rem;
}

.modern-nav-links .nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modern-nav-links .nav-link:hover {
  background: linear-gradient(135deg, #ffe5f0 0%, #fff0f5 100%);
  color: #ff6b9d !important;
  transform: translateY(-2px);
}

.modern-nav-links .nav-link.active {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff8fab 100%);
  color: white !important;
}

.nav-icon {
  font-size: 1.1rem;
}

.btn-logout {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(220, 53, 69, 0.2);
}

.btn-logout:hover {
  background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
  color: white;
}

.logout-icon {
  font-size: 1rem;
}

.footer {
  background-color: #fff5f9;
  border-top: 1px solid #ffe5f0;
  padding: 1.5rem 0;
  margin-top: auto;
  position: relative;
  width: 100%;
  bottom: 0;
  flex-shrink: 0;
}

.container {
  flex: 1 0 auto;
}

main {
  flex: 1 0 auto;
}

/* Responsive Design */
@media (max-width: 991px) {
  .modern-nav-links {
    margin-left: 0;
    margin-top: 1rem;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  .brand-name {
    font-size: 1.1rem;
  }
  
  .brand-subtitle {
    font-size: 0.7rem;
  }
}