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;
}

/* Standard dashboard styles */
.dashboard-header {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 8px;
}

.dashboard-card {
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive table for dashboard */
.table-responsive {
  overflow-x: auto;
}

/* Standard container max-width */
.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Dashboard specific styles */
.dashboard-container {
  background-color: #f8f9fa;
  min-height: calc(100vh - 200px);
  padding: 20px 0;
}

.dashboard-card {
  transition: transform 0.2s ease-in-out;
}

.dashboard-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Table improvements */
.table {
  border-radius: 8px;
  overflow: hidden;
}

.table thead th {
  background-color: #343a40;
  border: none;
  color: white;
  font-weight: 600;
}

.table tbody tr:hover {
  background-color: #f8f9fa;
}

@media (max-width: 768px) {
  .container-fluid {
    padding: 0 15px;
  }
  
  .dashboard-container {
    padding: 15px 0;
  }
}