body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

/* Styles for the main container */
.container {
  display: flex;
  min-height: 100vh; /* Ensures the layout fills the viewport height */
}

/* Styles for the sidebar */
.sidenav {
  width: 250px; /* Fixed width for the sidebar */
  background-color: #000000; /* Example background color */
  /*padding: 1rem;*/
  flex-shrink: 0; /* Prevent sidebar from shrinking */
}

.sidenav a {
  color: white;
  padding: 16px;
  text-decoration: none;
  display: block;
}

/* Change color on hover */
.sidenav a:hover {
  background-color: #ddd;
  color: black;
}

/* Styles for the main content area */
.content {
  flex-grow: 1; /* Allows the content area to grow and fill remaining space */
  padding: 1rem;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .container {
    flex-direction: column; /* Stack items vertically on small screens */
  }
  .sidenav {
    width: 100%; /* Full width for sidebar on mobile */
    height: auto; /* Adjust height as needed */
  }
}


.flex-grid {
  display: flex;
}

.flex-grid .col {
  flex: 1;
}

.row {
  display: flex;
  gap: 15px;
}

.banner {
  width: 200px;
  padding: 16px;
  color: white;
}

 .box-300 {
  width: 300px;
}

 .box-200 {
  width: 200px;
}

 .box_center {
  justify-items:center;
}

.smalltxt{
 color: grey;
 font-size: 0.8em;
 margin-top: 10px;
}


.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="email"],
input[type="number"],
input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}

.show-password {
  margin-top: 5px;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

  button:hover {
  background-color: #ddd;
  color: black;
  }
 


input[type="checkbox"]:checked {
  accent-color: black; /* Changes the checkbox color when checked */
}

.error {
  color: red;
  font-size: 0.9em;
  margin-top: 10px;
}