/* site.css */
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;
}

/* Sidebar styles */
.sidebar {
    height: calc(100vh - 56px); /* Adjust this value based on the height of your navbar */
    position: fixed;
    top: 56px; /* Adjust this value based on the height of your navbar */
    left: 0;
    padding-top: 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    width: 250px; /* Adjust this value based on the desired width of your sidebar */
    background-color: #f8f9fa; /* Light background color for the sidebar */
    border-right: 1px solid #dee2e6; /* Optional border for the sidebar */
}

/* Main content styles */
.main-content {
    margin-left: 250px; /* Adjust this value to match the width of your sidebar */
    padding: 1rem;
}

/* Footer styles */
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 60px; /* Adjust this value based on the height of your footer */
    background-color: #f8f9fa; /* Light background color for the footer */
    border-top: 1px solid #dee2e6; /* Optional border for the footer */
}

/* site.css */
.required-asterisk {
    color: red;
    margin-left: 2px;
}
