html {
    background-color: rgba(1,1,1,0.01);
}

.hidden {
    display: none !important;
}

.jsonly {
    display: none !important;
}

.is-fullwidth {
    width: 100%;
}

.button.has-text-left {
    justify-content: flex-start;
}

.tag.is-ezb {
    background-color: #505253;    
    color: whitesmoke;
}

.tag.is-dbis {
    background-color: #0778a5;
    color: whitesmoke;
}

.tag.is-rvk {
    background-color: #983565;
    color: whitesmoke;
}

button.is-url {
    background-color: #008c6a;
    color: whitesmoke;
    border: none;
}

button.is-url:hover {
    background-color: #0b3e1f;
    color: whitesmoke;
}

button.is-red {
    background-color: #d91638;
    color: whitesmoke;
    border: none;
}

button.is-red:hover {
    background-color: #d91638DD;
    color: whitesmoke;
}

a.is-url {
    color: #008c6aDD ;
}

a.is-url:hover {
    color: #0b3e1f;
}

.dropdown-list li button {
    border-radius: 0px;
}

.dropdown-list li button:hover {
    background-color: whitesmoke;
}

table.is-undecorated td {
    border: none;
}

.organization-search-select {
    position: relative;
}

.organization-list {
    position: absolute;
    left: 0;
    top: 2.5em;
    width: 100%;
    z-index: 100;
}

/* Accordion */
.accordion {
    
}

.accordion.is-active {
    margin-bottom: 8px;
}


.accordion-header button {
    border-style: none;
    width:100%;
    padding-right:2.5em;
    line-height:1.2;
    padding: 1em 1.5em;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
    border: 1px #b5b5b5b5 solid;
    background-color: white;    
    border-radius: 4px;
}

.accordion:not(.is-active) {
    margin-bottom: 8px;
}

.accordion.is-active .accordion-header button {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
}

.accordion-header button:hover {
    border-color: #888888;
}

/* This renders a arrow similar to the dropdown-arrow of bulma */
.accordion-header button::after {
    content: " ";
    border: 3px solid transparent;
    border-radius: 2px;
    border-right: 0;
    border-top: 0;
    display: block;
    transform: rotate(-45deg);
    transform-origin: center;
    width: 0.625em;
    height: 0.625em;
    margin-top: -0.825em;
    border-color: darkgrey;
    position: absolute;
    right: 4em;
}

.accordion.is-active .accordion-header button::after {
    transform: rotate(-225deg);    
}

.accordion-header button:hover::after {
    border-color: #888888; 
}

.accordion .accordion-body {
    height: 0;
    opacity: 0; 
    display: none;
    transition: height 0ms 400ms, opacity 400ms 0ms;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.accordion.is-active .accordion-body {
    display: block;
    border: 1px lightgrey solid;
    border-top: none;
    padding: 16px;
    height: auto; 
    opacity: 1;
    z-index: 1;
}

.service-container .selectize-input {
    min-height: 2.5em;
}

.service-container .selectize-dropdown {
    height: 2.5em;
}

.service-container .selectize-input, .service-container .selectize-dropdown {
    font-size: 1rem;
    line-height: 1.35em;
    font-family: BlinkMacSystemFont,-apple-system,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
}

.service-container .selectize-control.multi .selectize-input > div, .service-container .selectize-control.multi .selectize-input [data-value] {
    border: none;
    background: #008c6a;
    background-image: none;
}

.service-container .selectize-dropdown-content {
    max-height: none;
}

.service-container .selectize-dropdown {
    height: auto;
}

table.organisations-and-privileges td {
    border-style : hidden !important;
}

/* Grundstil für das Flatpickr-Textfeld */
.input {
  border-radius: 4px;
  border: 1px solid #dbdbdb;
  background-color: white;
  box-shadow: none;
  height: 2.75em;
  padding-left: 0.75em;
  padding-right: 2.5em; /* Platz für das Kalender-Icon rechts */
  font-size: 1rem;
  line-height: 1.5;
  color: #363636;
}

/* Fokus-Stil wie Bulma */
.input:focus {
  border-color: #485fc7;
  box-shadow: 0 0 0 0.125em rgba(72, 95, 199, 0.25);
  outline: none;
}

/* Kalender-Icon positionieren */
.flatpickr-input:focus + .flatpickr-calendar,
.flatpickr-input[readonly] {
  cursor: pointer;
}

/* Icon rechts ausrichten */
.flatpickr-input {
  cursor: pointer;
}

/* Kalender-Icon (Default von flatpickr) bleibt rechts im Feld */
