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: 230px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #ffffff;
}

/* General Styling */
.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
}

.footer {
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 1.5rem 0;
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* Card Styling */
.card {
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.card:hover {
  border-color: #cccccc;
}

.card-header {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: 500;
}

/* Table Styling */
.table {
  border-radius: 8px;
  overflow: hidden;
}

.table th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
}

/* Custom Utility Classes */
.shadow-sm {
  border: 1px solid #e5e5e5 !important;
}

.shadow-md {
  border: 1px solid #cccccc !important;
}

.rounded-custom {
  border-radius: 8px !important;
}