body {
  color: #161e2d !important;
}

.sidebar {
  width: 300px; 
  padding-left: 8px;
  padding-right: 8px;
  background-color: #BFBFBF;
  margin-bottom: 0;
}

.backgroundContent {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
  padding-right: 3rem !important;
  padding-left: 3rem !important;
  overflow: auto !important;
}

.container-space-between {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: baseline;
}

.flex-container {
  display: flex;
  align-items: center; /* Align items vertically center */
}

.organization-select-label {
  margin-left: 15px;
  margin-right: 15px;
}

.form-select-organization {
  width: auto;
}

.filter-container {
  padding: 1rem;
  margin: 0;
  align-items: center;
}

.details-container {
  display: flex; 
  flex-wrap: wrap;
  margin-top: 1rem;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.detailsPage-header {
  background-color: #e0e0e0;
  padding: 10px;
  margin-top: 0.25rem;
  margin-top: 0.25rem;
  border-radius: 8px;
  /* display: flex;
  justify-content: space-between;
  align-items: center; */
  width: 100%;
}

.question-container {
  flex-grow: 1; 
  display: flex; 
  flex-direction: column; 
  min-width: 250px; 
  word-break: break-word; 
  padding: 16px;
  margin-top: 1rem;
}

.form-check {
  margin-bottom: 1rem;
}

label.form-check-label {
  font-weight: 400;
}












.btn-secondary{
  color: black !important; 
  background-color: #BFBFBF !important; 
  border-color: #BFBFBF !important;
  border-radius: 0.375rem !important; 
}

.btn-secondary:hover{
  color: white !important; 
  background-color:  #797979 !important;
  border-color: #797979 !important; 
  border-style: solid !important;
}

.btn-success{
  color: black !important; 
  background-color:  #92CF2B !important;
  border-color: #92CF2B !important; 
  border-style: solid !important;
  font-family: Arial;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 20px;
}

.btn-success:hover{
  color: white !important; 
  background-color:  #92CF2B !important;
  border-color: #92CF2B !important; 
  border-style: solid !important;
}

.btn-warning{
  color: black !important; 
  background-color:  #D16699 !important;
  border-color: #D16699 !important; 
  border-style: solid !important;
  font-family: Arial;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 20px;
}

.btn-warning:hover{
  color: white !important; 
  background-color:  #be3075 !important;
  border-color: #be3075 !important; 
  border-style: solid !important;
}







.overview-collapse-button {
  padding: 0 !important;
}

.non-existent {
  color: black !important;
  background-color: #D5DED8 !important;
}

.basic {
  color: black !important;
  background-color: #ADBDB2 !important;
}

.mature {
  color: white !important;
  background-color: #6B8674 !important;
}

.outstanding {
  color: white !important;
  background-color: #36433A !important;
}

.compliant {
  background-color: #92CF2B !important;
}

.noncompliant {
  background-color: #D16699 !important;
}

.notassessed {
  background-color: #BFBFBF !important;
}

.dot {
  height: 10px;
  width: 10px;
  /* background-color: #bbb; */
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}

.span.badge {
  float: none !important;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #5171ff; /* Blue */
    border-right: 16px solid rgb(135, 206, 230);
    border-left: 16px solid rgb(135, 206, 230);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    align-self: center; 
    margin: 1rem;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .nav-pills {
    --bs-nav-pills-border-radius: 0.375rem;
    --bs-nav-pills-link-active-color: #fff;
    --bs-nav-pills-link-active-bg: #5171ff !important;
}

a.nav-link.primary {
  margin-left: 0;
}

a.nav-link.secondary {
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 0px;

  /* border-left: 1px solid lightgrey;
  border-right: 1px solid lightgrey; */
  display: flex;
  align-items: baseline;
}

a.nav-link.secondary.link-dark {
  background-color: #e0e0e0;
}

a.nav-link.secondary.active {
  color: black;
  background-color: lightblue;
}

.nav-link.secondary .text-content {
  margin-left: 15px; /* Adjust this value based on the width of your .dot span */
  text-indent: -15px; /* Adjust this value to be the negative of the margin-left value */
}


  #breadcrumbOverview:hover {
    text-decoration: underline;
}

.btn-close:hover {
  text-decoration: none;
}

/* .btn-close {
  
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;

} */

.badge.text-bg-primary {
  float: none;
  width: 100px;
}

.preserve-line-breaks {
  white-space: pre-wrap !important; /* or pre-line depending on the need */
}

.accordion-header {
  margin: 0px !important;
}

.card-description {
  margin : 20px 0px;
}

.shadow-box {
  border: 1px solid #ccc; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}







.maturity-badge {
  float: none;
  width: 100px;
  margin-right: 4px;
}

.task-checkbox-container {
  margin-top: 0px !important; 
  padding-top: 0px !important; 
  padding-bottom: 0px !important;
}

.measure-container {
  background-color: #f4f4f4;
  padding: 20px;
  margin: 20px;
  border-radius: 8px;
}
.measure-section {
  margin-top: 10px;
  padding: 10px;
  background-color: white;
  border-radius: 8px;
  width: 100%;
}


.modal.wide {
  --bs-modal-width: 60% !important;
}

.overview-collapse-button {
  height: 35px;
}

.btn-group-vertical .btn {
  width: 240px; /* Set a fixed width */
}

.btn-group-vertical>.btn-group:not(:last-child)>.btn, .btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.btn-group-vertical>.btn-group:not(:first-child)>.btn, .btn-group-vertical>.btn~.btn {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

/* .footer {
  display: none !important;
} */

.modal-dialog.setting {
  width: 400px;
}

.form-check-label {
  display: flex;
}


.menu-bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.left-align {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}

.right-align {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
}


.container-fluid.center-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.notification-box {
  width: 100%;
  height: calc(100vh - 210.397px);
  border: 1px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  padding: 10px;
  box-sizing: border-box;
  background-color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}
.notification-card {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.notification-header {
  font-weight: bold;
  margin-bottom: 10px;
}
.notification-content {
  margin-bottom: 10px;
}
.notification-timestamp {
  text-align: right;
  font-size: 0.9em;
  color: #888;
}
.notification-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.breadcrumb {
  padding: 0 !important;
  margin-bottom: 0 !important;
}

.list-group {
  margin-top: 0.5rem !important;
}

/* html {
  height: auto
} */

.footer-bottom {
  padding: 0;
  background-color: #224C54 !important;
}

.navbar {
  padding: 0;
}

.flexible-container {
  display: flex;
  align-items: baseline;
  width: 100%;
}

.flexible-container > div:nth-child(1) {
  /* This will take 30% of the remaining space */
  flex: 0 1 30%;
}

/* .flexible-container > div:nth-child(2) {
  This will take the remaining space after the other two divs
  flex: 1 1 auto;
} */

.flexible-container > div:nth-child(3) {
  /* This will shrink to fit its content */
  flex: 0 0 auto;
}

label {
  color: #384c71;
}

:root {
  --footer-and-header-height: 125.667px;
}

#mainContent {
  min-height: calc(100% - var(--footer-and-header-height));
}

/*
#mainContent > div:first-child {
  min-height: calc(100vh - var(--footer-and-header-height));
}

#mainContent > div:first-child > div:first-child {
  min-height: calc(100vh - var(--footer-and-header-height));
}

#mainContent > div:first-child > div:first-child > div:first-child {
  min-height: calc(100vh - var(--footer-and-header-height));
}

.main-container-power-page {
  min-height: calc(100vh - var(--footer-and-header-height));
} */

.main-container-power-page {
  min-height: calc(100vh - var(--footer-and-header-height));
}

.navbar-toggler {
  background-color: #5171ff;
}

.reassess-button {
  width: 33px !important;
  padding: 0 !important;
  height: 33px !important;
}


.view-grid.table-responsive {
  min-height: 200px;
}

a[href="/Set-Up-Organization/"].btn.btn-primary.float-end.action.create-action {
  margin-top: 0.5rem;
  margin-right: 0.5rem;
}



.actions {
  display: flex;
  justify-content: space-between; /* Ensure items are aligned to the right */
}

.left-actions {
  display: flex;
  align-items: center;
  margin-left: 5px;
}
        
.right-actions {
  display: flex;
  align-items: center;
}

/* Adjust the ::after pseudo-element */
.actions::after {
  content: none !important; /* Remove the pseudo-element content */
}


.stat-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.display-contents {
  display: contents;
}


.chapter.disabled {     
  position: relative;     
  color: #999;     
  background-color: #f0f0f0;     
  pointer-events: none; 
} 

.chapter.disabled::after {     
  content: 'Not available in test version';
  position: absolute;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(85, 81, 81, 0.65);
  color: white;
  /* padding: 7.8px 10px; */
  /* border: 1px solid red; */
  /* border-radius: 5px; */
  width: 100%;
  height: 100%;
}


.link.disabled {     
  position: relative;     
  color: #999;     
  background-color: #f0f0f0;     
  pointer-events: none; 
} 

.link.disabled::after {     
  content: 'Not available in test version';
  position: absolute;
  justify-content: center;    
  align-items: center;
  display: flex;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(85, 81, 81, 0.65);
  color: white;
  /* padding: 7.8px 10px; */
  /* border: 1px solid red; */
  /* border-radius: 5px; */
  width: 100%;
  height: 100%;
}










/* NYX */

.my-0 {
  color: white;
}

.table-dark th {
  background-color: #224C54;
  color: rgb(255, 255, 255);
}

.table {
  background-color: #f8f9fa; /* Hier kannst du die gewünschte Hintergrundfarbe einstellen */
  border: 1px solid #224C54; /* Ändere die Farbe nach Belieben */
  border-collapse: collapse; /* Verhindert doppelte Ränder */
}

.card-header {
  background-color: #224C54 !important;
  color: white
}

.text-bg-primary {
  background-color: #224C54 !important;
}

.border-primary {
  border-color: #92CF2B !important;
}

.btn-primary{
  color: rgb(0, 0, 0) !important; 
  background-color: #92CF2B !important; 
  border-color: #92CF2B !important;
  border-radius: 0.375rem !important; 
}

.btn-primary:hover{
  color: rgb(255, 255, 255) !important;
  background-color: #6c991e !important;
  border-color: #6c991e !important;
  border-style: solid !important;

}

.button-container {
  display: flex;
  justify-content: space-between;
}

.button-container .btn {
  width: 48%;
}

.btn-details {
  background-color: lightgray !important;
  border-color: lightgray !important;
  color: black !important;
}

.btn-details:hover {
  background-color: gray !important;
  border-color: gray !important;
  color: white !important;
}

.table-dark {
  --bs-table-bg: #92CF2B !important;
}

.bot-details-button-container {
  display: flex;
  justify-items: center;
  align-items: center;
  justify-content: space-between;
}



/* Zeitscheibe */

.zeitscheibe-container {
  text-align: center;
}

.pie-chart-container {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.pie-chart {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #000; /* Schwarze Umrandung */
}

.pie-chart-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(
      #ffffff 0% 40%, /* Color for used time */
      #224C54 40% 100% /* Color for remaining time */
  );
}

.pie-chart-outer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  clip-path: polygon(50% 50%, 100% 0, 100% 100%);
  transform: rotate(calc(360deg / 15 * 12)); /* Adjust this for time remaining */
}

.time-left {
  margin-top: 10px;
  font-size: 1.2em;
  color: #333;
}

.buy-button {
  display: block;
            margin: 0 auto; /* Zentriert den Button horizontal */
            background-color: #92CF2B;
            color: white;
            border: none;
            padding: 10px 20px;
            font-size: 1em;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #0056b3;
}



.flowchart {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step {
  background: #fff;
  border: 2px solid #224C54;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 10px;
  text-align: center;
  width: 300px;
}

.step2 {
  background: #fff;
  border: 2px solid #224C54;
  border-radius: 5px;
  padding: 10px 20px;
  margin: 10px;
  text-align: center;
  width: 300px;
}

.step-title {
  font-size: 16px;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #224C54;
  margin: 10px 0;
}

.small-text {
  font-size: 0.875rem; /* oder ein anderer gewünschter Wert */
  font-weight: normal; /* optional, falls du das Gewicht des Textes ändern möchtest */
  color: inherit; /* stellt sicher, dass die Textfarbe vererbt wird */
}

#liquid_form {
  min-height: calc(100% - var(--footer-and-header-height))
}




.card {
  border: 1px solid #224C54; /* Ändere diese Farbe nach Belieben */
  overflow: hidden;
}

/* .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.button-container {
  margin-top: auto;
} */




/* Apply cursor: not-allowed to buttons inside disabled <td> elements */
td[data-action="selectDay"].day.disabled button {
  cursor: not-allowed;
}

.popup {
  display: none; /* Standardmäßig ausgeblendet */
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
 }
 .popup-content {
  background-color: #fff;
  padding: 20px;
  margin: 15% auto;
  width: 80%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  text-align: center;
 }
 .popup-content button {
  background-color: #92CF2B;
  color: white;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
 }
 .popup-content button:hover {
  background-color: #92CF2B;
 }

 /* Button-Styling */
.info-button {
  display: inline-block;
  background-color: #2196F3;
  color: white;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}

.info-button:hover {
  background-color: #1976D2;
}
