/* Main application styles */

/* Body and base styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
}

/* Container styles */
.container2 {
  max-width: 100%;
  margin: auto;
  background-color: white;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  border-radius: 8px;
}

/* Heading styles */
h3 {
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
  margin-top: 30px;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

th, td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #f2f2f2;
  font-weight: bold;
}

thead th {
  position: sticky;
  top: 0;
  background-color: #f2f2f2;
  z-index: 10;
}

tr:nth-child(even) {
  background-color: #fafafa;
}

tr:hover {
  background-color: #f1f1f1;
}

td[colspan] {
  text-align: right;
  font-weight: bold;
}

/* Toast notification styles - OLD STYLE (kept for backward compatibility if needed) */
/* Note: Bootstrap 5 Toast uses .toast-container and .toast classes, so this old style is disabled */
/* If you need the old toast style, use a different class name like .old-toast */
/*
.old-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: white;
  color: black;
  padding: 10px 20px;
  block-size: 50px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  opacity: 0.9;
  z-index: 10000;
  display: none;
}
*/

/* Logo styles */
.navbar-brand .logo-nav {
  /* Responsive: scales with navbar size */
  max-width: 100%;
  max-height: 50px; /* Fixed maximum size for navbar */
  height: auto;
  width: auto;
}

