/* NORDIC INDUSTRIAL PORTAL THEME */
/* Clean, professional industrial look inspired by nordic-industrial.com */

/* RESET & BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  color: #2d3e50;
  background-color: #f5f7fa;
  line-height: 1.6;
}

/* HEADER & NAVIGATION */
#topbar1 {
  background-color: #0e284f;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
#insidetopbar1 {
  width: 200px;
  height: 50px;
  background: url('/path/to/logo.png') no-repeat left center;
  background-size: contain;
  margin: 0 auto;
}
#topbar3 {
  background-color: #183c6d;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
}
#nav {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0 2%;
}
#nav li {
  margin-right: 25px;
  position: relative;
}
#nav a {
  display: block;
  padding: 18px 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background-color .3s ease;
}
#nav a:hover {
  background-color: #2d6dcf;
  border-radius: 4px;
}
.systemmenu {
  display: none;
  position: absolute;
  top: 60px;
  background-color: #183c6d;
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: 4px;
}
#nav li:hover .systemmenu {
  display: block;
}
.systemmenu li a {
  padding: 10px 15px;
  display: block;
  color: #f0f4f9;
}
.systemmenu li a:hover {
  background-color: #2d6dcf;
}

/* CONTAINER */
#container {
  width: 90% !important;
  max-width: 1400px;
  margin: 40px auto;
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Override fixed inline width for boxwhite.xnetcontent */
.boxwhite.xnetcontent {
  width: 100% !important;
  max-width: none !important;
}

/* BOX CONTENT */
.boxwhite, .box {
  background: #fff;
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
}
.xnetcontent h1 {
  color: #0e284f;
  border-bottom: 2px solid #2d6dcf;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.9rem;
}
.xnetbody {
  color: #44556b;
  margin-bottom: 20px;
}

/* FORM ELEMENTS */
form.mbform {
  background-color: #f9fafc;
  border: 1px solid #e0e5ea;
  padding: 20px;
  border-radius: 6px;
}
.form_label {
  font-weight: 600;
  color: #2d3e50;
}
.form_field {
  border: 1px solid #cbd2d9;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 1rem;
  color: #2d3e50;
  background-color: #fff;
  width: 100%;
  max-width: 250px;
}
.form_field:focus {
  outline: none;
  border-color: #2d6dcf;
  box-shadow: 0 0 0 2px rgba(45,109,207,0.15);
}
.form_errortxt {
  color: #c0392b;
  font-size: 0.875rem;
}

/* BUTTONS */
.buttonlane {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.buttonlane a,
input[type="submit"],
button {
  background-color: #2d6dcf;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  display: inline-block;
  transition: background-color .3s ease, box-shadow .3s ease;
}
.buttonlane a:hover,
input[type="submit"]:hover,
button:hover {
  background-color: #1b4f9e;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* DYNAMIC TABLE / TASK LIST */
#todolist {
  width: 100% !important;
  overflow-x: auto;
  margin-top: 30px;
}
.dyntablecontainer {
  border: 1px solid #dbe3ec;
  border-radius: 8px;
  background-color: #f9fafc;
  padding: 15px;
}

/* Tabulator modern styling */
#todolist .tabulator {
  width: 100% !important;
  border: none;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
}
#todolist .tabulator-header {
  background-color: #0e284f;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
#todolist .tabulator-col {
  border-right: 1px solid #dbe3ec;
}
#todolist .tabulator-col:last-child {
  border-right: none;
}
#todolist .tabulator-row {
  background-color: #fff;
  transition: background-color .3s ease;
}
#todolist .tabulator-row:hover {
  background-color: #f4f8fc;
}
#todolist .tabulator-row-even {
  background-color: #fafcff;
}
#todolist .tabulator-cell {
  padding: 10px 12px;
  color: #44556b;
  font-size: 0.95rem;
  border-bottom: 1px solid #e9edf0;
}
#todolist .tabulator-cell:last-child {
  border-bottom: none;
}
#todolist .tabulator-placeholder {
  color: #607080;
  padding: 40px 0;
  font-style: italic;
  text-align: center;
}
#todolist .tabulator-footer {
  border-top: 1px solid #dbe3ec;
  padding: 12px;
  background-color: #fafbfd;
}
#todolist .tabulator-footer .tabulator-pages .tabulator-page {
  background-color: #fff;
  border: 1px solid #cbd2d9;
  color: #0e284f;
  margin: 0 4px;
  padding: 6px 10px;
  border-radius: 4px;
  transition: background-color .3s ease;
}
#todolist .tabulator-footer .tabulator-pages .tabulator-page.active {
  background-color: #2d6dcf;
  color: #fff;
  border-color: #2d6dcf;
}
#todolist .tabulator-footer .tabulator-page:hover {
  background-color: #3c6eae;
  color: #fff;
  border-color: #3c6eae;
}

/* GANTT SECTION */
#gantt_container {
  margin-top: 40px;
  background-color: #eef2f6;
  border: 1px dashed #cbd2d9;
  border-radius: 6px;
  min-height: 200px;
  text-align: center;
  color: #607080;
  padding: 20px;
  font-style: italic;
}

/* DIALOGS */
.dialog,
#ui-confirm,
#ui-report {
  background-color: #fff;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  color: #2d3e50;
}

/* TOOLTIP / INFO WINDOWS */
#tooltip,
.infowindow {
  position: absolute;
  background-color: #2d6dcf;
  color: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 0.875rem;
  display: none;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  #container {
    width: 95% !important;
    padding: 20px;
  }
  #nav {
    flex-direction: column;
    align-items: center;
  }
  #nav li {
    margin: 0 0 10px 0;
  }
  .form_field {
    width: 100%;
    max-width: 100%;
  }
}
#insidetopbar1 { background: URL('/file.php/File/2175/sldlogo Kopie 2.jpg'); background-repeat: no-repeat; background-size: contain; }#topbar3 { background: #ffffff !important; }#nav > li > a {color: #355397 !important;}.button {background: #355397 !important;}.button {color: #f0f2f5 !important;}