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;
  background-color: #f8f9fa;
}

/* Production Page Styles */
.product-item {
  background-color: white;
  transition: all 0.3s ease;
}

.product-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.btn-minus, .btn-plus {
  font-weight: bold;
}

.card {
  border-radius: 10px;
}

.card-header {
  border-radius: 10px 10px 0 0 !important;
}

/* Mobile responsive improvements */
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem !important;
  }
  
  h3 {
    font-size: 1.4rem !important;
  }
  
  h4 {
    font-size: 1.2rem !important;
  }
  
  h5 {
    font-size: 1.1rem !important;
  }
  
  .btn-lg {
    font-size: 1.3rem !important;
    padding: 12px !important;
  }
  
  .form-select-lg {
    font-size: 1.2rem !important;
  }
  
  .table {
    font-size: 1rem !important;
  }
}

/* Print styles */
@media print {
  .btn {
    display: none !important;
  }
  
  #productListContainer {
    display: none !important;
  }
  
  .card {
    box-shadow: none !important;
    border: 1px solid #000 !important;
  }
}