
 /*Global Fonts*/ 


/* FONT: INTER */
@font-face {
    font-family: "Inter";
    src: url("https://aqfiles.aquiso.at/_fonts/Inter/Inter-VariableFont_slnt,wght.ttf") format("truetype");
}
 /*Global CSS*/ 

/* FONT: BUBBLE GUM, QUICKSAND */
/*@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Cinzel+Decorative:wght@400;700;900&family=Coming+Soon&family=Dosis:wght@200;300;400;500;600;700;800&family=Indie+Flower&family=Quicksand:wght@300;400;500;600;700&family=Slabo+27px&family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
/* FONT: MONTSERRAT */
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* FONT: NEWSREADER */
/*@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/* FONT: SOURCE SANS PRO */
/*@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');

/* FONT: POPPINS */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* FONT: LATO */
/*@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* FONT: MUKTA */
/*@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');

/* FONT: INTER */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* GLOBAL / BODY */

html {
    width: 100%;
    scroll-behavior: smooth !important;
}

body {
    background-color: #fff;
    /*background-image: url('https://devfiles.netgrid.at/system/background.png');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #000;
    width: 100%;
    height: auto;
    min-height: calc(100vh - 111px);
    font-family: "Inter", sans-serif;
    font-size: 18px;
    scroll-behavior: smooth;
}


button {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

.appcontent {
    margin-top: 0px;
    width: 100% !important;
    padding-top: 0px;
    min-height: calc(100vh - 66px);
}

.first-top-space {
    margin-top: 40px;
}


a {
    color: #CCC;
    transition: 0.5s;
  }
  
  a:hover, a:active, a:focus {
    color: #FFF;
    outline: none;
    text-decoration: none;
  }
  
  p {
    padding: 0;
    margin: 0 0 30px 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    margin: 0 0 20px 0;
    padding: 0;
  }
  
  .display-3 {
      font-family: "Inter", sans-serif !important;
      font-size: 3.9rem;
      font-weight: normal !important;
  }
  
  @media screen and (max-width: 1279px) {
      .display-3 {
          font-size: 2.2rem;    
      }
  }
  
  
  
  /* Back to top button */
  .back-to-top {
    position: fixed;
    display: none;
    background: #FF0000;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 20px;
    bottom: 20px;
    transition: background 0.5s;
    z-index: 11;
  }
  
  .back-to-top i {
    padding-top: 12px;
    color: #fff;
  }
  
  @media (max-width: 768px) {
    .back-to-top {
      bottom: 15px;
    }
  }
  
  /* Shadows */
  .shadow-rtm {
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 16px 0 rgba(0, 0, 0, 0.15)
  }
  
  .shadow-rmt:hover {
      box-shadow: 0 4px 8px 0 rgba(7, 48, 63, 0.3), 0 3px 16px 0 rgba(7, 48, 63, 0.25)
  }
  
  
  .shadow-rtm-strong {
      box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.15)
  }
  
  .shadow-rmt-strong:hover {
      box-shadow: 0 8px 12px 0 rgba(7, 48, 63, 0.6), 0 6px 20px 0 rgba(7, 48, 63, 0.25)
  }
  
  /* Prelaoder */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #f2f2f2;
    border-top: 6px solid #33B5E5;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  
  /* FULLSCREEN MODAL */
  .modal-full {
      min-width: 100%;
      margin: 20px auto 0 auto !important;
      min-height: calc(100vh - 20px);
  }
  
  .modal-full .modal-content {
      min-height: 100vh;
  }
  
  
  /*MOBILE NAV ADJUSTMENT */
  @media screen and (max-width: 1279px) {
      .header-scrolled {
          min-height: 80px;
      }
  }
  
  
  /* CMS STYLES */
  .cms-container {
      width: 100%;
      position: relative;
  }

  .cms-container-border {
    border: 1px dashed #444 !important;
  }

  .cms-edit {
    cursor: text;
  }

  /* NETGRID IMPRINT */
  .netgrid-imprint-container {
      width: 320px;
      height: 120px;
  }
  .netgrid-imprint {
      border: 0px solid transparent;
      transition: 0.5s;
  }

  .netgrid-imprint:hover {
      border: 4px solid #fff;
      transition: 0.2s;
      transform: scale(1.05);
  }






  




  
  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
      width: 100%;
      max-width: 100% !important;
      transition: all 0.5s;
      z-index: 997;
      padding: 26px 0;
      padding: 18px 0;
      background: black;
      position: fixed;
    }
    
    #header .container-fluid {
        margin: 10px 0 !important;
    }
    
    #header .logo {
      font-size: 16px;
      margin: 0;
      padding: 0;
      line-height: 1;
      font-family: "Inter", sans-serif;
      font-weight: 700;
      letter-spacing: 3px;
      padding-left: 10px;
    }
    
    #header .logo a {
      color: #fff;
    }
    
    #header .logo img {
      max-height: 250px;
    }

    #header .nav-link {
        margin-left: 24px;
    }
    
    @media (max-width: 992px) {
      #header .logo {
        font-size: 20px;
      }
    }
    
/* COOKIES OPTIONS */
.cookiesoption {
    z-index: 9999999999;
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 44px;
    height: 44px;
    border: 1px solid #888;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    font-size: 30px;
    text-align: center;
    margin: auto auto;
    opacity: 0.5;
    transition: 0.7s;
    cursor: pointer;
}
.cookiesoption:hover {
    transition: 0.7s;
    opacity: 1;
}


.cookiesoptionmenu {
    z-index: 9999999999999;
    position: fixed;
    display: none;
    bottom: 14px;
    left: 14px;
    width: 500px;
    height: 200px;
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 4px;
    transition: 0.7s;
    font-size: 18px;
    padding: 10px 20px;
}


/* TOOLTIP */

.tooltip {
    z-index: 1000000000000000000 !important;
}

.tooltip > .tooltip-inner {
    background-color: #2b2d31;       /* Slightly lighter grey for contrast */
    font-family: 'Inter', sans-serif;
    font-size: 14px; 
    color: #fff; 
    border: 1px solid #555;          /* More subtle border */
    border-radius: 4px;              /* Softer radius */
    padding: 8px 12px;
}

/* LOGO */
.navbar-brand img {
    width: 160px !important;
    max-height: 100px !important;
    transition: 0.5s;
}

.navbar-brand img:hover {
    transform: scale(1.15);
    transition: 0.5s;
}


/* NAV */

.navbar {
    max-width: 100% !important;
}

/*.nav-link {
    margin-left: 46px;
}

.navbar-dark .navbar-nav .nav-link {
    font-size: 20px;
    color: #DDD;
    border-bottom: 4px solid transparent;
    transition: 0.4s;
}

.navbar-dark .navbar-nav .nav-link:hover {
    font-size: 20px;
    color: #FFF;
    border-bottom: 4px solid #fff;
    transition: 0.4s;
}


/* NAV SUBMENU */
/*.dropdown-menu {
    background-color: rgba(34, 34, 34, .98) !important;
    border-radius: 4px;
    border: 4px solid #fff;
}

.dropdown-item {
    color: #fff;
}

/* APP FORM */
.appform {
    width: 100%;
    margin: 0 0 20px 0;
}

.appformheader {
    width: 100%;
    background-color: rgba(52, 58, 64, .3);
}

.appformsubmit {
    width: 100%;
    background-color: rgba(52, 58, 64, .3);
    text-align: center;
    padding: 10px 20px;
}

.appformtitle {
    color: #fff;
    font-size: 3rem;
    margin: 20px 20px 6px 20px;
}

.appformentryname {
    color: #fff;
    font-size: 1.6rem;
    text-transform: capitalize;
    margin-left: 0 !important;
}

.appformsubtitle {
    color: #fff;
    font-size: 2rem;
    margin: 20px 20px 6px 20px;
}

.appform-element {
    display: table;
    margin: 20px 0;
    width: 100%;
    padding: 0 20px;
}

.appform-inputtitle {
    display: table-cell;
    vertical-align: top;
    width: 30%;
    min-width: 300px;
}

.appform-inputdesc {
    display: table-row;
    width: 100%;
    color: #ccc;
    font-size: 0.8rem;
    padding: 4px 0 0 20px;
}

.appform-inputdesc span {
    max-width: 30%;
    padding-right: 20px;
}

.appform-input {
    display: table-cell;
    vertical-align: top;
    width: 70%;
}

.appform-input input {
    width: 100%;
    margin: 0 0 0 auto;
}

#actionform {
    display: inline;
}

.actionbutton {
    margin-left: 40px;
    margin-bottom: 8px
}

/*.bootstrap-select {
    width: 100% !important;
}*/

.appform-actions {
    white-space: nowrap; 
    width: 100%; 
    text-align: right;
}


.appform-options {
    display: block;
    text-align: left;
    margin: 0 1%;
}

.appform-option {
    display: inline-block;
    width: auto;
    max-width: 19%;
    border: 3px solid rgba(52, 58, 64, .3);
    border-radius: 8px;
    text-align: center;
    margin: 20px 8px;
    padding: 2px 14px;
}

.appform-option:hover {
    background: rgba(52, 58, 64, .3);
    transition: 0.6s;
}

.appform-icon {
    display: inline-block;
    vertical-align: middle;
    font-size: 2rem;
}

.appform-title {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.2rem;
    color: #ccc;
    margin: 0 0 2px 8px;
}




/* TABLES */

.table-responsive {
    max-width: calc(100% - 1px);
}

.table > tbody > tr > td {
    vertical-align: middle;
}

.tr-button {
    cursor: pointer !important;
}

table.dataTable tbody tr {
    background-color: transparent;
}


.firstcellpadding {
    padding-left: 20px !important;
}

.dataTables_wrapper {
    margin-top: 20px;
}

.custom-select {
    color: #000 !important;
}

.dataTables_filter .form-control {
    color: #FFF !important;
}
.dataTables_filter .form-control::placeholder, .dataTables_filter .form-control::placeholder:active {
    color: #AAA !important;
}


.table-dark td, .table-dark th, .table-dark thead th {
    border-color: rgba(255,255,255, 0.3) !important;
}

.table.dataTable thead th, table.dataTable thead td {
    border-color: rgba(255,255,255, 0.3) !important;
}

.table.dataTable.no-footer {
    border-color: rgba(255,255,255, 0.3) !important;
}


/* TABLES PAGINATION */
.pagination {
    background-color: rgba(52, 58, 64, .3);
}

.pagination > li > a
{
    background-color: #333;
    color: #FFF;
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover
{
    color: #5a5a5a;
    background-color: #333;
    border-color: #ddd;
}

.pagination > .active > a
{
    color: white;
    background-color: rgba(34,34,34, 0.8) !important;
    border: solid 1px rgba(34,34,34, 0.8) !important;
}

.pagination > .active > a:hover
{
    background-color: #333 !important;
    border: solid 1px #333;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    color: #fff;
    padding-left: 20px;
}

.dt-buttons {
    margin-bottom: 8px;
}

.dt-search {
    display: inline-block;
    position: absolute; 
    right: 20px;
    margin-top: 0;
    min-width: 300px;
    text-align: right; 
}

.dt-length {
    margin: 8px 0;
}

/* Fix T-Head Background Color for fixedHeader */
thead {
    background: #292c30;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: linear-gradient(to bottom, rgba(52, 58, 64, .3) 0%, rgba(52, 58, 64, .3) 100%)
}


/* CONFIRMATION */
.popover-header {
    color: #000;
}

/* BREADCRUMBS */
.breadcrumb {
    margin-bottom: 0;
    background-color: #1a1a1a;
    border-radius: 0;
    padding: 18px 2% 8px 2%;
    border-bottom: 1px solid #292c30;
    font-size: .9rem;
}


.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #ddd;
}

/* BOOTSTRAP LINKED BUTTON FIX */
span a:hover {
    text-decoration: none !important;
    border: none;
  }



/* BOOTSTRAP COLOR CHANGES */
.btn-secondary {
    background-color: rgba(52, 58, 64, .3);
    border-color: rgba(255,255,255, .3);
}

/* Dunkles Design für alle Formulareingaben */
.form-control,
.form-control:focus,
.form-control:hover {
  background-color: #232323 !important;
  color: #fff !important;
  border: 1px solid #444 !important;
  border-radius: 0.25rem !important;
  box-shadow: none !important;
  transition: background 0.2s, border 0.2s;
}
.form-control:focus,
.form-control:hover {
  background-color: #333 !important;
  color: #fff !important;
  border: 1px solid #888 !important;
  outline: none !important;
  box-shadow: none !important;
}
.form-control::placeholder {
  color: #bbb !important;
  opacity: 1;
}

.table-dark {
    background-color: rgba(52, 58, 64, .3);
}

.table-dark.table-hover tbody tr:hover {
    background-color: rgba(80,80,80, .2);
}

.table-striped tbody tr:nth-of-type(2n+1){
    background-color: rgba(100,100,100, 0.2) !important;
}

.table-dark.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: rgba(60, 66, 72, .3) !important;
}

.table-dark.table-striped tbody tr:nth-of-type(2n+1):hover {
    background-color: rgba(52, 58, 64, .3) !important;
}



/* CLOSE ICON BOOTSTRAP */
.close {
    color: #fff;
}

.close:hover {
    color: #ccc;
}


/* SUMMERNOTE CHANGES */
/*.note-airframe {
    border: 1px dashed #444 !important;
}*/

/* SUMMERNOTE DISABLE UPLOAD */
.note-group-select-from-files {
    display: none;
  }


/* HEADER SCROLLED */
.navbar.fixed-top {
    transition: background-color 0.3s ease-out;
    background: #202124;
}

.navbar.fixed-top.scrolled {
    /*background-color: rgba(34, 34, 34, .98) !important;*/
    transition: background-color 0.3s ease-out;
}


/* NAV CHANGES */
.nav-item-spacer {
    margin: auto 8px;
}





/* BOOTSTRAP MODAL */
.modal-content {
    background: rgba(52, 58, 64, .95);
    color: #fff;
}


/* FULLSCREEN MODAL */
.modal-full {
    min-width: 80%;
    margin: inherit auto;
}

.modal-full .modal-content {
    min-height: 100vh;
}

.modal-header .close {
    color: #fff;
}

.modal-header .close:hover {
    color: #ccc;
}



/* UPLOAD MANAGER */
.modalgallery {
    width: 100%;
    margin: 20px 0;
}

.filegallery {
    width: 100%;
}

.filegallery_content {
    display: inline-block;
    vertical-align: top;
    margin: 6px 8px;
    border-radius: 2px;
    border: 4px solid #666;
    height: 160px;
    width: 160px;
    transition: 0.6s;
    font-size: 100px;
    text-align: center;
}

.filegallery_content:hover {
    border-color: #bbb;
    transition: 0.6s;
}

.content_active {
    border-color: #d9534f !important;
    transition: 0.6s;
}

.filegallery_content img {
    width: 150px;
    margin: auto 0;
    vertical-align: middle;
}

.upload-preview {
    border: 3px dashed #555;
    border-radius: 3px;
    max-width: 240px;
    transition: 0.8s;
}

.upload-preview:hover {
    border: 3px dashed #bbb;
    transition: 0.8s;
}



/* BOOTSTRAP CARDS */
.card {
    border: 1px solid rgba(255,255,255,.35);
}


.card-dark {
    background: rgba(52, 58, 64, .4) !important;
}

.card-purple {
    background: rgba(100, 6, 151, .4) !important;
}

.card-orange {
    background: rgba(217, 143, 17, .4) !important;
}

.card-footer{
    position:absolute;
    bottom:0;
    width:100%;
}


/* DATEPICKER */

.bootstrap-datetimepicker-widget {
    background-color: #fff !important;
    color: rgba(52, 58, 64, 1) !important;
}
/*
.bootstrap-datetimepicker-widget table {
    color: rgba(52, 58, 64, .7) !important;
  }

.bootstrap-datetimepicker-widget table th.picker-switch{
    color:#FFF !important;
}

.bootstrap-datetimepicker-widget table th{
  color:#FFF !important;
}

.bootstrap-datetimepicker-widget table td{
  color:#000 !important;
}*/





/* COMMENTS */

.comments-precontrol {
    background-color: #f7d05b4f !important
}


/* BOOTSTRAP TOASTS */

.toast {
    max-width: 400px !important;
}

.toast-header {
    color: #fff;
}

.toast-body {
    color: #000;
}

.toast-body h5 {
    font-size: 20px !important;
}


/* FLIP ELEMENTS CURSOR*/
.front {
    cursor: grab;
}

.back {
    cursor: grab;
}



/* FORM - UPLOADER*/
.upload-prev-pdf {
    font-size: 60px;
    margin: 0 30px;
}





/* Fix: Filter-Dropdowns in einer Zeile, nicht 100% breit */
.filter-dropdown-row .bootstrap-select {
    width: auto !important;
    min-width: 180px;
    max-width: 220px;
}





/* --- Bootstrap-select: Dunkles Dropdown-Design global --- */
.bootstrap-select .dropdown-menu {
  background-color: #232323;
  color: #fff;
  border: 1px solid #444;
}

.bootstrap-select .dropdown-menu .dropdown-item {
  background-color: transparent;
  color: #fff;
}

.bootstrap-select .dropdown-menu .dropdown-item.active,
.bootstrap-select .dropdown-menu .dropdown-item:active,
.bootstrap-select .dropdown-menu .dropdown-item:hover {
  background-color: #444;
  color: #fff;
}

/* Bootstrap-select: Suchfeld im Dropdown dunkler und mit Fokus-Style */
.bootstrap-select .bs-searchbox input {
  background-color: #232323;
  color: #fff;
  border: 1px solid #444;
  box-shadow: none;
}
.bootstrap-select .bs-searchbox input:focus {
  background-color: #333;
  color: #fff;
  border: 1px solid #888;
  outline: none;
  box-shadow: none;
}

.bootstrap-select .dropdown-menu {
  scrollbar-color: #444 #232323;
  scrollbar-width: thin;
}

/* --- Bootstrap-select: Button im dunklen Design --- */
.bootstrap-select > .btn {
  background-color: #232323;
  color: #fff;
  border: 1px solid #444;
  box-shadow: none;
}

.bootstrap-select > .btn:focus,
.bootstrap-select > .btn:active,
.bootstrap-select > .btn:hover {
  background-color: #333;
  color: #fff;
  border: 1px solid #666;
  outline: none;
  box-shadow: none;
}

/* Caret (Pfeil) auch weiß */
.bootstrap-select > .btn .caret,
.bootstrap-select > .btn::after {
  border-top-color: #fff !important;
}

/* Bootstrap-select: Button aktiv (Dropdown offen) */
.bootstrap-select.show > .btn {
  background-color: #444;
  color: #fff;
  border: 1px solid #888;
  outline: none;
  box-shadow: none;
}

/* Kalender-Suchfeld im dunklen Design (überschreibt .form-control) */
#calendar-search.form-control {
  background-color: #232323 !important;
  color: #fff !important;
  border: 1px solid #444 !important;
  border-radius: 0.25rem !important;
  box-shadow: none !important;
  transition: background 0.2s, border 0.2s;
}
#calendar-search.form-control:focus,
#calendar-search.form-control:hover {
  background-color: #333 !important;
  color: #fff !important;
  border: 1px solid #888 !important;
  outline: none !important;
  box-shadow: none !important;
}
#calendar-search.form-control::placeholder {
  color: #bbb !important;
  opacity: 1;
}





 /*Page CSS*/ 


/* appsystem */

.dash-head {
    text-align: center;
    color: #fff;
    font-size: 3rem;
}


    
    #loginform .container- {
    height: 100%;
    align-content: center;
    }
    
    #loginform .card{
        height: 370px;
        margin-top: auto;
        margin-bottom: auto;
        width: 400px;
        background-color: rgba(0,0,0,0.5) !important;
        padding-bottom: 20px;
        border-radius: .5rem;
    }
    
    #loginform .social_icon span{
        font-size: 60px;
        margin-left: 10px;
        color: rgba(52, 58, 64, 1);
    }
    
    #loginform .social_icon span:hover{
    color: white;
    cursor: pointer;
    }

    #loginform .fa-circle {
        color: #fff;
    }
    
    #loginform .card-header h3{
    color: white;
    }
    
    #loginform .social_icon{
    position: absolute;
    right: 20px;
    top: -45px;
    }
    
    #loginform .input-group-prepend span{
    width: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    border:0 !important;
    }
    
    input:focus{
    outline: 0 0 0 0  !important;
    box-shadow: 0 0 0 0 !important;
    
    }
    
    #loginform .remember{
    color: white;
    }
    
    #loginform .remember input
    {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    margin-right: 5px;
    }
    
    #loginform .login_btn{
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    margin: 8px 0;
    }
    
    #loginform .login_btn:hover{
    color: black;
    background-color: white;
    }
    
    #loginform .links{
    color: white;
    }
    
    #loginform .links a{
    margin-left: 4px;
    }

/* --- Dark Theme for Log Reader --- */
.log-reader-dark-theme .card {
    background-color: #212529;
    color: #f8f9fa;
    border: 1px solid #495057;
}

.log-reader-dark-theme .card-header {
    background-color: #343a40;
    border-bottom: 1px solid #495057;
}

.log-reader-dark-theme .form-control,
.log-reader-dark-theme .form-select {
    background-color: #343a40;
    color: #f8f9fa;
    border: 1px solid #495057;
}

.log-reader-dark-theme .form-control:focus,
.log-reader-dark-theme .form-select:focus {
    background-color: #495057;
    color: #f8f9fa;
    border-color: #80bdff;
    box-shadow: 0 0 0 .25rem rgba(13, 110, 253, .25);
}

.log-reader-dark-theme .form-control::placeholder {
    color: #adb5bd;
}

.log-reader-dark-theme label {
    color: #ced4da;
}

.log-reader-dark-theme .table {
    color: #dee2e6;
}

.log-reader-dark-theme .table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: rgba(255, 255, 255, 0.05);
    color: #dee2e6;
}

.log-reader-dark-theme .table-hover > tbody > tr:hover > * {
    --bs-table-accent-bg: rgba(255, 255, 255, 0.1);
    color: #f8f9fa;
}

.log-reader-dark-theme .table thead th {
    border-bottom: 2px solid #495057;
}

.log-reader-dark-theme .table td,
.log-reader-dark-theme .table th {
    border-top: 1px solid #343a40;
}

.log-reader-dark-theme .modal-content {
    background-color: #212529;
    color: #f8f9fa;
    border: 1px solid #495057;
}

.log-reader-dark-theme .modal-header {
    border-bottom: 1px solid #495057;
}

.log-reader-dark-theme .modal-header .close {
    color: #f8f9fa;
    text-shadow: none;
    opacity: 0.7;
}

.log-reader-dark-theme .modal-header .close:hover {
    opacity: 1;
}

.log-reader-dark-theme .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.log-reader-dark-theme pre code {
    color: #f8f9fa;
}

/* NG-LOGIN STYLES */
.ng-login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: calc(100vh - 40px);
    padding: 20px;
    font-family: 'Inter', sans-serif;
    background-color: #1a1a1a; /* Match error pages */
}
.ng-login-logo img {
    max-height: 36px; /* Increased from 220px */
    height: auto;
    margin-bottom: 1.5rem;
}
.ng-login-slogan {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 2.5rem;
    font-weight: 300;
}
.ng-login-container {
    width: 100%;
    max-width: 420px;
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid #444;
}
.ng-login-header h3 {
    font-size: 1.7rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #fff;
    text-align: center;
}
.ng-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}
.ng-input-group .ng-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1.1rem;
}
.ng-input {
    width: 100%;
    padding: 13px 15px 13px 50px;
    background-color: #1e1f22;
    border: 1px solid #555;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.ng-input::placeholder {
    color: #888;
}
.ng-input:focus {
    outline: none;
    border-color: #ccc; /* White/Gray focus */
    box-shadow: 0 0 0 1px #ccc; /* White/Gray focus */
}
.ng-login-btn {
    width: 100%;
    padding: 14px;
    background-color: #333; /* Dark Gray */
    border: none;
    border-radius: 5px;
    color: #fff; /* White Text */
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}
.ng-login-btn:hover {
    background-color: #444; /* Lighter Gray on hover */
}
.ng-login-footer {
    margin-top: 1.5rem;
}
.ng-login-footer a {
    color: #ccc; /* White/Gray link */
    text-decoration: none;
    font-weight: 500;
}
.ng-login-footer a:hover {
    text-decoration: underline;
    color: #fff;
}
.ng-login-footer .ng-links-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}
.ng-login-footer .ng-register-link {
     color: #aaa;
}
.ng-login-footer .ng-register-link a {
    margin-left: 5px;
}

/* NG-DASHBOARD STYLES */
.ng-dash-wrapper {
    padding: 40px;
    font-family: 'Inter', sans-serif;
}

.ng-dash-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.ng-dash-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 1600px;
    margin: 0 auto;
}

.ng-dash-card {
    background-color: #2b2d31;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ng-dash-card:hover {
    transform: translateY(-5px);
    border-color: #666;
}

.ng-dash-card.welcome {
    grid-column: 1 / -1; /* Make welcome card full width */
    text-align: left;
}

.ng-dash-contact-card {
    grid-column: 1 / 2; /* Occupy 50% of the grid width */
}

.ng-dash-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #aaa;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ng-dash-card-content {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
}

.ng-dash-card-content a {
    color: #eee;
    text-decoration: none;
    font-weight: 500;
}
.ng-dash-card-content a:hover {
    text-decoration: underline;
    color: #fff;
}

.ng-dash-version-info {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-top: 5px;
}

.ng-dash-version-watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 300;
    z-index: 999;
}

.ng-dash-contact-card .contact-entry {
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.ng-dash-contact-card .contact-entry:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.ng-dash-contact-card .contact-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}
.ng-dash-contact-card .contact-header small {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}
.ng-dash-contact-card .contact-subject {
    font-weight: 600;
    color: #bbb;
    margin-bottom: 10px;
}

.ng-dash-contact-card .contact-message {
    font-style: italic;
    color: #999;
}


/* content_aquiso */

/* AQUISO Global Table Styles */
.aq-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Circular Std", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.aq-table thead th {
    text-align: left;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #1e3e5d;
    background: #f5f5f0;
    border-bottom: 2px solid #e8e8e8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aq-table tbody td {
    padding: 14px 16px;
    font-size: 15px;
    color: #606060;
    border-bottom: 1px solid #e8e8e8;
    vertical-align: middle;
}

.aq-table tbody tr:hover {
    background: #fafafa;
}

.aq-table tbody tr:last-child td {
    border-bottom: none;
}

/* Table Action Links */
.aq-table-action {
    color: #fc5e10;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.aq-table-action:hover {
    color: #1e3e5d;
    text-decoration: underline;
}

/* Badge Styles */
.aq-badge {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.aq-badge-success {
    background: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.aq-badge-warning {
    background: rgba(255, 193, 7, 0.15);
    color: #997404;
}

.aq-badge-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.aq-badge-info {
    background: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.aq-badge-primary {
    background: rgba(30, 62, 93, 0.1);
    color: #1e3e5d;
}

.aq-badge-orange {
    background: rgba(252, 94, 16, 0.1);
    color: #fc5e10;
}

/* Searchable Dropdown Styles */
.aq-select-search {
    position: relative;
    font-family: "Circular Std", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.aq-select-search-trigger {
    width: 100%;
    padding: 10px 14px;
    padding-right: 36px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    color: #1e3e5d;
    background: #ffffff;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    text-align: left;
    position: relative;
}

.aq-select-search-trigger:focus {
    outline: none;
    border-color: #fc5e10;
    box-shadow: 0 0 0 3px rgba(252, 94, 16, 0.1);
}

.aq-select-search-trigger::after {
    content: "▼";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #999;
    transition: transform 0.2s ease;
}

.aq-select-search.open .aq-select-search-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.aq-select-search-trigger.placeholder {
    color: #999;
}

.aq-select-search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d0d0d0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 12px rgba(30, 62, 93, 0.15);
    max-height: 280px;
    overflow: hidden;
    z-index: 100;
}

.aq-select-search.open .aq-select-search-dropdown {
    display: block;
}

.aq-select-search-input-wrapper {
    padding: 10px;
    border-bottom: 1px solid #e8e8e8;
}

.aq-select-search-input {
    width: 100%;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    color: #1e3e5d;
    background: #f5f5f0;
    font-family: inherit;
}

.aq-select-search-input:focus {
    outline: none;
    border-color: #fc5e10;
    background: #ffffff;
}

.aq-select-search-input::placeholder {
    color: #999;
}

.aq-select-search-options {
    max-height: 200px;
    overflow-y: auto;
}

.aq-select-search-option {
    padding: 12px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
    font-size: 15px;
    color: #1e3e5d;
}

.aq-select-search-option:last-child {
    border-bottom: none;
}

.aq-select-search-option:hover,
.aq-select-search-option.highlighted {
    background: #f5f5f0;
}

.aq-select-search-option.selected {
    background: rgba(252, 94, 16, 0.1);
    color: #fc5e10;
    font-weight: 500;
}

.aq-select-search-option.hidden {
    display: none;
}

.aq-select-search-empty {
    padding: 12px 14px;
    color: #999;
    font-style: italic;
    text-align: center;
}

.aq-select-search-separator {
    padding: 8px 14px;
    color: #ccc;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    user-select: none;
}

/* Project contact highlighting */
.aq-select-search-option.project-contact {
    background: rgba(252, 94, 16, 0.08);
    border-left: 3px solid #fc5e10;
}

.aq-select-search-option.project-contact:hover {
    background: rgba(252, 94, 16, 0.15);
}

/* ========================================
   AQUISO Card & Layout Styles
   ======================================== */

.aq-dash-wrapper {
    padding: 2rem;
    width: 90%;
    margin: 0 auto;
    font-family: "Circular Std", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.aq-dash-header h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e3e5d;
}

.aq-dash-grid {
    display: flex;
    gap: 1.5rem;
}

.aq-dash-card {
    flex: 1;
    min-width: 0;
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 20px rgba(30, 62, 93, 0.15);
    transition: box-shadow 0.3s ease;
}

.aq-dash-card:hover {
    box-shadow: 0px 6px 25px rgba(30, 62, 93, 0.2);
}

.aq-dash-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #fc5e10;
}

.aq-dash-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1e3e5d;
}

.aq-dash-card-options {
    display: flex;
    gap: 0.5rem;
}

.aq-dash-option-link {
    font-size: 14px;
    color: #fc5e10;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid #fc5e10;
    transition: all 0.3s ease;
}

.aq-dash-option-link:hover,
.aq-dash-option-link:active,
.aq-dash-option-link:focus {
    background: #fc5e10;
    color: #ffffff;
    text-decoration: none;
}

.aq-dash-card-content {
    font-size: 16px;
    color: #606060;
    line-height: 1.6;
}

.aq-dash-card-content a {
    color: #fc5e10;
    text-decoration: none;
}

.aq-dash-card-content a:hover {
    color: #1e3e5d;
    text-decoration: underline;
}

/* Profile Styles */
.aq-profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.aq-profile-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.aq-profile-row:last-child {
    border-bottom: none;
}

.aq-profile-label {
    font-weight: 600;
    color: #1e3e5d;
    font-size: 14px;
}

.aq-profile-value {
    color: #606060;
}

.aq-profile-value a {
    color: #fc5e10;
    text-decoration: none;
}

.aq-profile-value a:hover {
    text-decoration: underline;
}

.aq-profile-tag {
    display: inline-block;
    padding: 6px 12px;
    margin: 4px 4px 4px 0;
    background: rgba(30, 62, 93, 0.08);
    color: #1e3e5d;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.aq-profile-tag:hover {
    background: #fc5e10;
    color: #fff;
}

.aq-profile-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* ========================================
   AQUISO Login Styles
   ======================================== */

.aq-login-wrapper {
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 10vh;
    background: #ffffff;
    font-family: "Circular Std", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    overflow: hidden;
}

.aq-login-card {
    width: 100%;
    max-width: 380px;
    padding: 2.5rem;
    background: #1e3e5d;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(30, 62, 93, 0.3);
}

.aq-login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.aq-login-logo img {
    max-height: 50px;
    width: auto;
}

.aq-login-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.aq-login-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.25rem 0;
}

.aq-login-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.aq-login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.aq-login-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.aq-login-input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.aq-login-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.aq-login-input-wrapper i {
    position: absolute;
    left: 12px;
    color: #1e3e5d;
    font-size: 14px;
    transition: color 0.3s ease;
}

.aq-login-input {
    width: 100%;
    padding: 12px 12px 12px 38px;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    color: #1e3e5d;
    background: #ffffff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.aq-login-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(252, 94, 16, 0.3);
}

.aq-login-input-wrapper:focus-within i {
    color: #fc5e10;
}

.aq-login-input::placeholder {
    color: #999;
}

.aq-login-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: #fc5e10;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.aq-login-btn:hover {
    background: #e04d0a;
    box-shadow: 0 4px 12px rgba(252, 94, 16, 0.4);
}

.aq-login-btn i {
    font-size: 13px;
}

.aq-login-error {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.aq-login-error i {
    font-size: 16px;
}

.aq-login-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.aq-login-footer a {
    color: #fc5e10;
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.25rem;
}

.aq-login-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Remove background shapes */
.aq-login-background {
    display: none;
}

/* Password Strength Indicator */
.aq-login-pw-strength {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.aq-login-pw-strength-bar {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.aq-login-pw-strength-fill {
    height: 100%;
    width: 0;
    border-radius: 2px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.aq-login-pw-strength-text {
    font-size: 12px;
    font-weight: 600;
    min-width: 90px;
    text-align: right;
    white-space: nowrap;
}

.aq-login-pw-strength-fill.aq-login-pw-level-1 {
    background-color: #dc3545;
}

.aq-login-pw-strength-fill.aq-login-pw-level-2 {
    background-color: #fd7e14;
}

.aq-login-pw-strength-fill.aq-login-pw-level-3 {
    background-color: #ffc107;
}

.aq-login-pw-strength-fill.aq-login-pw-level-4 {
    background-color: #198754;
}

.aq-login-pw-strength-text.aq-login-pw-level-1 {
    color: #dc3545;
}

.aq-login-pw-strength-text.aq-login-pw-level-2 {
    color: #fd7e14;
}

.aq-login-pw-strength-text.aq-login-pw-level-3 {
    color: #997404;
}

.aq-login-pw-strength-text.aq-login-pw-level-4 {
    color: #198754;
}
