/* Ops Internal Dashboard — global styles */

body {
  background-color: #f0f2f5;
  min-height: 100vh;
}

/* Ensure the React root takes full height when needed */
#root {
  min-height: 100vh;
}

/* Subtle hover lift on stat cards */
.card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}
