<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* === shadow === */
.shadowed {
  -fx-effect: dropshadow(gaussian, rgba(100,100,100,0.8), 5, 0, 0, 3);
}

/* === background === */
/* -- basic -- */
.bg-white {
  -fx-background-color: white;
}
/* -- vehiclePane -- */
.bg-yellow {
  -fx-background-color: #FFE699;
}
.bg-status-green {
  -fx-background-color: #C5E0B4;
}
.bg-status-orange {
  -fx-background-color: #F8CBAD;
}
/* -- header areas -- */
.bg-blue {
  -fx-background-color: #2E75B6;
}
.bg-green {
  -fx-background-color: #548235;
}
.bg-light-orange {
  -fx-background-color: #BF9000;
}
.bg-dark-orange {
  -fx-background-color: #C55A11;
}
/* -- content areas -- */
.bg-gray-blue {
  -fx-background-color: #E8EAEF;
}
.bg-gray-green {
  -fx-background-color: #EBEFE8;
}
.bg-gray-orange {
  -fx-background-color: #EFEBE8;
}
/* -- edit area -- */
.bg-edit-area-orange {
  -fx-background-color: #FBE5D6;
}

/* === text === */
.text-big {
  -fx-font-size: 18px;

}

.text-medium {
  -fx-font-size: 14px;
}

.text-small {
  -fx-font-size: 14px;
}

.text-bold {
  -fx-font-weight: bold;
}

.text-white {
  -fx-text-fill: white;
}

/* === button === */
.button {
  -fx-background-radius: 0em;
  -fx-border-color: black;
}

.button-main {
  -fx-background-color: #548235;
  -fx-text-fill: white;
  -fx-font-weight: bold;
}

.button-free-status {
  -fx-background-color: #C5E0B4;
}

.button-other-status {
  -fx-background-color: #F8CBAD;
}

/* === menu item === */
.mi-free {
  -fx-background-color: #C5E0B4;
}

.mi-other {
  -fx-background-color: #F8CBAD;
}

.menu-item:focused .label {
  -fx-text-fill: black;
  -fx-font-weight: bold;
}

/* === text field === */
.text-field {
    /*-fx-text-box-border: transparent black black black;*/
    -fx-background-color: -fx-control-inner-background;
    /*-fx-background-insets: 0;*/
    -fx-padding: 1 3 1 3;
    -fx-border-color: transparent transparent black transparent;

}

.text-field:focused {
    -fx-focus-color: transparent;
    -fx-faint-focus-color: transparent;
}

/* === scroll pane === */
.scroll-pane {
  -fx-background-color:transparent;
}

.scroll-pane .viewport {
    -fx-background-color: transparent;
}

.scroll-pane .scroll-bar:vertical {
    -fx-opacity: 0;
}

/* === choice box ===
.choice-box {
  -fx-background-color: transparent;
  -fx-padding: 2 2 2 2;
}

.choice-box .label {
  -fx-text-fill: white;
}

.choice-box .arrow, .choice-box .arrow-button{
    -fx-background-color: transparent;
    -fx-background-insets: 0;
    -fx-background-radius: 0;
    -fx-padding: 0;
}*/

</pre></body></html>