* {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}
h1 {
    font-size: 30px;
    margin: auto;
}
.content {
  text-align: center;
  display: flex;
  justify-content: center;
}
.content--right {
    text-align: right;
    display: flex;
    justify-content: center;
}
.content--left {
    text-align: left;
    display: flex;
    justify-content: center;
}
.card-basic {
    max-width: 500px;
}
.card-header sl-icon-button {
  font-size: var(--sl-font-size-medium);
}

p {
    color: #777;
}
a {
    color: #007bff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

sl-tooltip sl-icon-button::part(base):hover {
  color: #ff5733;
}

.icon-paragraph {
  display: flex;
  align-items: center;
}
.icon-paragraph sl-icon {
  margin-right: 5px;
}
.icon-paragraph-add {
    display: flex;
    align-items: center;
    margin: 1px 3px;
}

.border {
    border: medium dashed #27bafd;
}

.add {
    display: flex;
    align-items: center;
    margin: 8px;
}

.card-header h3 {
  margin: 0;
}
.login-container {
    text-align: center;
}
.login-container__headline {
    text-align: center;
}
.login-container__content {
    text-align: left;
}
.red {
    color: red;
}
.disable-button {
    border: none;
    background: transparent;
}

.vehicleCard {
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  background-color: #27BAFD;
  width: 200px;
}

.vehicleTable {
  border-collapse: separate;
  border-spacing: 0 10px;
  padding: 0 10px;
  margin: auto;
}
.submitbutton {
    border: transparent;
    background: transparent;
    border-radius: 10px;
    color: white;
    padding: 10px;
    text-align: left;
    font-weight: bold;
    cursor: pointer;
}
.carDetail {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    padding: 10px;
    border-radius: 10px;
}
.carDetail sl-icon {
    padding-right: 10px;
}
.carDetail:hover {
  background-image: linear-gradient(to right, #109EE2 85%, #27BAFD);
}
.carDelete:hover {
    color: #fd9191;
  background-image: linear-gradient(to left, red, #27BAFD);
}
.greyButton {
  color: #8e8e9a;
}
.greyButton:hover {
  color: #109EE2;
  cursor: pointer;
}

/* --- Width ---*/
.w100 {
  width: 100% !important;
}
.w75 {
  width: 75% !important;
}
.w50 {
  width: 50% !important;
}
.w25 {
  width: 25% !important;
}

/* --- Text Align ---*/
.ta-l {
  text-align: left !important;
}
.ta-r {
  text-align: right !important;
}
.ta-c {
  text-align: center !important;
}

/* --- Display ---*/
.fs-s {
  font-size: small !important;
}
.fs-m {
  font-size: medium !important;
}
.fs-l {
  font-size: large !important;
}
.fs-xl {
  font-size: x-large !important;
}
.fs-xxl {
  font-size: xx-large !important;
}

/* --- Display ---*/
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}

/* --- Align Items --- */
.align-center {
  align-items: center;
}

/* --- Gaps --- */
.gap-10 {
  gap: 10px;
}

.spacebetween {
  margin: auto 10px;
}

@media screen and (max-width: 900px) {
  .card-header {
    max-width: 100%;
  }
}

.card-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.header-grid .card-header sl-button sl-icon {
  margin: 10px;
}
.sl-card {
    width: 100%;
    margin:10px;
}
.margin {
    margin: 5px;
}
.header-grid {
  display: grid;
  grid-template-columns: 2.5em 10em 2.5em;
  grid-template-rows: 2.5em;
  grid-auto-rows: 2.5em;
  gap: 5px 5px;
  grid-auto-flow: row;
  grid-template-areas:
  "header-left header-middle header-right";
}

.header-left { grid-area: header-left; }

.header-middle { grid-area: header-middle; }

.header-right { grid-area: header-right; }

.width::part(base) {
    width: 100% !important;
    --border-width: 3px;
}

.buttonGrid {  display: grid;
    grid-template-columns: 30% 70%;
    grid-template-rows: auto auto;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 5px 10px;
    grid-auto-flow: row;
    grid-template-areas:
    "inputs inputs"
    "delete-section save-section";
}
sl-input::part(form-control-label) {
    padding-top: 15px;
    padding-bottom: 15px;
}

.inputs { grid-area: inputs; }

.delete-section { grid-area: delete-section; }

.save-section { grid-area: save-section; }

.input-length {
    width: 270px;
}

/*vehicleList*/

.vehicleGrid {
    display: grid;
    justify-items: start;
}
.vehicle-button::part(base) {
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: left;
}
.vehicleList {
    display: inline-grid;
    grid-template-columns: repeat(5, 100%);
    grid-template-rows: repeat(5, 10%);
    grid-column-gap: 0;
    grid-row-gap: 0;
}

.vehicle { grid-area: 1 / 1 / 2 / 3; }

.Vehicle-group {
    display: block;
    margin-bottom: 5px;
    width: 100%;}

.vehicle-left {
    width: 100%;
}
.vehicle-left::part(base){
  justify-content: flex-start;
}
sl-button.fuel-btn::part(base) {
    --sl-input-height-medium: 50px;
    line-height: 25px
}

sl-dropdown.fuel-btn::part(base) {
    --sl-input-height-medium: 50px;
}

.fuel-btn__text--down {
    padding-left: 25px;
}
.imprint {
    margin-top: 19px;
}