/* styles.css */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

/* Header & Main Menu Navigation */
header {
  background-color: #2c3e50;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 60px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  margin-right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 30px;
  height: 30px;
  background-image: url("../img/Quisc.png");
  background-image: url("../img/Quisc.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

nav.main-menu {
  display: flex;
  gap: 20px;
}

nav.main-menu a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  padding: 5px 10px;
  border-radius: 4px;
}

nav.main-menu a:hover,
nav.main-menu a.active {
  /* background-color: #34495e; */
  background-color: #214972;
}

/* Layout for Sidebar and Content */
.container {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Sidebar & Submenus */
aside.sidebar {
  width: 200px;
  background-color: #ecf0f1;
  padding: 20px;
  overflow-y: auto;
  border-right: 1px solid #bdc3c7;
}

/*
aside.sidebar ul li {
  display: inline;
}
*/

@media screen and (max-width: 678px) {
  aside.sidebar {
    display: none;
  }
}

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

.submenu-title {
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #bdc3c7;
}

.action-list {
  list-style-type: none;
  margin-left: 10px;
}

.action-list li {
  margin: 5px 0;
}

.action-list a {
  color: #2980b9;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
}

.action-list a:hover {
  text-decoration: underline;
}

/* Main Content Area */
main.content-area {
  flex: 1;
  padding: 30px;
  background-color: #ffffff;
  overflow-y: auto;
}

#rescont1 {
  padding: 0px;
  background-color: #ddeeff;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
}

#rescont2 {
  width: 100%;
}

#rescont3 {
  height: 600px;
  width: 100%;
}

table,
th,
td {
  border: 1px solid green;
  border-collapse: collapse;
}

th,
td {
  padding: 10px;
}
.scrolB {
  border: 1px solid #999999;
  width: 98%;
  margin: 3px 0;
  padding: 3px;
  overflow-x: scroll;
  overflow-y: scroll;
  white-space: nowrap;
}
