@charset "UTF-8";
body {
  font-family: "Arial", sans-serif;
  background-color: #f4f6f9;
  margin: 0;
  padding: 0;
}

.layout-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f4f6f9;
}

.layout-content {
  flex: 1;
  padding-bottom: 60px;
}

.sidebar {
  width: 250px;
  background-color: #3f48c9;
  color: #fff;
  transition: width 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  padding: 20px;
  z-index: 100;
}
.sidebar-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.sidebar .company-name {
  font-size: 2rem;
  color: #FEF102;
  margin-top: 10px;
}
.sidebar-nav {
  list-style: none;
  padding-left: 0;
}
.sidebar-nav .nav-link {
  display: block;
  padding: 12px;
  color: #34495e;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}
.sidebar-nav .nav-link:hover {
  background-color: #2980b9;
  color: white;
}
.sidebar-nav .nav-link.active {
  background-color: #FEF102;
  color: white;
}

.main-content {
  margin-left: 250px;
  flex: 1;
  padding: 20px;
  background-color: #f4f6f9;
}

.top-nav {
  background-color: #ffffff;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  color: #3f48c9;
  font-size: 1.5rem;
}

.main-footer {
  padding: 20px;
  text-align: center;
  background-color: #ecf0f1;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .sidebar {
    width: 60px;
    padding: 10px;
  }
  .sidebar-header .company-name {
    display: none;
  }
  .sidebar-nav .nav-link {
    padding: 12px 20px;
  }
  .main-content {
    margin-left: 60px;
  }
}
/* Global Paramquery Grid Styles */
#pqgrid_listing {
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  margin: 20px 0;
  padding: 10px;
}

.pq-grid-header {
  background-color: #f8f9fa;
  color: #34495e;
  font-weight: bold;
  border-bottom: 2px solid #ddd;
}

.pq-grid-header .pq-grid-col-title {
  text-transform: uppercase;
  font-size: 14px;
  padding: 10px;
  text-align: left;
}

.pq-grid-row {
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.pq-grid-row:hover {
  background-color: #f0f0f0;
}

.pq-grid-cell {
  padding: 8px;
  font-size: 14px;
}

.pq-grid-cell.pq-editable {
  background-color: #e7f7ff;
}

.pq-grid-pager {
  padding: 10px;
  background-color: #f8f9fa;
  border-top: 2px solid #ddd;
  text-align: center;
}

.pq-grid-pager .pq-page-number {
  font-size: 14px;
  margin: 0 5px;
  color: #007bff;
}

.pq-grid-pager .pq-page-number:hover {
  text-decoration: underline;
}

.pq-grid-footer {
  padding: 15px 10px;
  background-color: #f8f9fa;
  text-align: center;
  font-size: 12px;
  color: #888;
}

/* Pagination Styles */
.pq-grid-pager {
  background-color: #f8f9fa;
  border-top: 2px solid #ddd;
}

/* Responsive Grid */
@media (max-width: 768px) {
  #pqgrid_listing {
    width: 100% !important;
    margin: 0 auto;
  }
}
/* Main Navigation Styling */
.navbar-nav {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.nav-item {
  position: relative;
  display: inline-block;
  /* Submenu (Flyout to the right) */
  /* Show the submenu when hovering over the parent item */
  /* Optional: Add a right arrow on hover */
}
.nav-item .nav-link {
  padding: 0.75rem 1.5rem;
  color: #f8f9fa;
  text-decoration: none;
  display: block;
}
.nav-item .nav-item-children {
  display: none; /* Hidden by default */
  position: absolute;
  top: 0;
  left: 100%; /* Position it to the right of the parent item */
  background-color: #3f48c9;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  min-width: 200px; /* Adjust based on your needs */
  list-style: none; /* Remove bullets */
}
.nav-item:hover .nav-item-children {
  display: block;
  list-style: none; /* Remove bullets */
}
.nav-item .nav-link::after {
  content: "▶"; /* Right arrow symbol */
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.2s ease-in-out;
}
.nav-item:hover .nav-link::after {
  transform: rotate(90deg); /* Rotate arrow when hovered */
}

.nav-item > .nav-link::after {
  content: "▶";
  margin-left: 5px;
  font-size: 0.8rem;
  transition: transform 0.2s ease-in-out;
}

/* Hide the arrow if there is no submenu */
.nav-item > .nav-link:not(:has(+ .nav-item-children))::after {
  content: "";
}

.container {
  margin-top: 50px;
}

.card {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-body {
  text-align: center;
}

h5 {
  font-size: 1.25rem;
  color: #FEF102;
  margin-bottom: 25px;
}

.form-floating input {
  font-size: 1rem;
  padding: 12px;
  border-radius: 8px;
}

.btn-login {
  padding: 12px;
  font-size: 1rem;
  text-transform: uppercase;
  background-color: #FEF102;
  border: none;
  border-radius: 8px;
}
.btn-login:hover {
  background-color: rgb(254.2007874016, 243.811023622, 52.7992125984);
}

@Use "layouts/footer" as *;
@Use "vendors/bootstrap" as *;
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
}

/*# sourceMappingURL=main.css.map */
