﻿:root {
    --top-bar-height: 66px;
}

* {
    border-radius: 4px;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent page-wide scroll */
    font-family: Realgar, sans-serif;
    border-radius: 6px;
}




select {
    width: auto;
    border: 1px solid #ccc;
    padding: 20px;
}


select option:checked,
select option:hover {
    background-color: #e12643;
    color: white;
}


label {
    margin: 5px;
}

.form-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    }

.error-label {
    color: red;
    font-weight: bold;
    background-color: #fee;
    padding: 0.2em 0.4em;
    border-radius: 4px;
}


.top-bar {
  background-color: #f5f4f2;
  padding: 10px;
  height: var(--top-bar-height);
}

.logo {
  height: 40px;
  margin-left: 0px;
  display: inline-block;
}

.row {
  margin: 0;
  width: 100%;
}

.container-fluid {
  display: flex;
  flex-direction: row;
  height: 100%; /* Make the container fill the screen */
  margin: 0;
  padding: 0;
  left: 0;
  right: 0;
}

.left-panel {
  background-color: #f5f4f2;
  overflow-y: auto; /* Enable scrolling for this panel */
  padding: 10px;
  box-sizing: border-box;
  height: calc(100vh - var(--top-bar-height));
  flex-shrink: 0;
}

.content p {
  margin-bottom: 15px;
}

.right-panel {
  flex-grow: 1; /* Takes up remaining space (75%) */
  height: calc(100vh - var(--top-bar-height));
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Prevent viewer overflow */
}

.viewer-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}


.tab-container {
    display: flex;
    flex-direction: row; /* Tabs und Inhalte untereinander anordnen */
    width: 100%; /* Optional: Passt sich der Breite des Containers an */
    padding-top: 10px;
}

.tab {
    display: flex; /* Buttons in einer horizontalen Reihe */
    border-bottom: none;
    background-color: #1d1e20;
    color: #f1f3f9;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 2px;
    padding-top: 2px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    transition: background-color ease 0.5s;
}

/* Stil beim Hover über das Tab */
.tab:hover {
    background-color: #5e636e; /* Hintergrundfarbe ändern, wenn die Maus drüber ist */
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    margin-right: 5px;
    transition: 0.3s;
}

.tab.active {
    background-color: #e12643;
    color: #f1f3f9;
    transition: background-color ease 0.5s;
}

.tab.disabled {
    pointer-events: none; /* Verhindert Hover und Klick */
    background-color: #8f96a3;
    /* Grau als Hinweis auf Deaktivierung */
    color: #1d1e20; /* Textfarbe wird auch grauer */
    cursor: not-allowed; /* Zeigt an, dass das Element deaktiviert ist */
}


.tab-button:hover {
    background-color: #ddd;
}

.tab-button.active {
    background-color: #ccc;
}

.tab-content-container {
    display: flex;
    flex-direction: row; /* Tabs und Inhalte untereinander anordnen */
    max-width: 500px;
}

.tab-content {
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    display: none;
    max-width: 500px;
    border: 1px solid #ccc;
    border-radius: 6px;
    border-top-left-radius: 0px;
    padding: 20px !important;
    scrollbar-gutter: stable;
    overflow: hidden;
/*    transition: opacity 0.5s ease;*/
    /*    overflow-x: hidden;*/
    /*    overflow-y: auto;*/
    /*    position: absolute;*/
    /*    visibility: hidden;*/
    /*    pointer-events: none;*/
    /*    max-height: 100%;*/
    /*    box-sizing: border-box;*/
    /*    opacity: 0;*/
}
    .tab-content .tab-content {
        padding: 20px;
        overflow-x: auto;
        overflow-y: auto;
        scrollbar-gutter: auto;
    }

    .tab-content.active {
        display: block;
        opacity: 1;
        position: relative;
        height: auto;
        pointer-events: auto;
        /* visibility: visible; */
        /* opacity: 1;*/
         transition: opacity 0.5s ease;
    }

.btn-primary {
    background-color: #e12643 !important;
    border-color: #e12643 !important;
}

.btn-primary:hover {
    background-color: #c21f38 !important; /* Dunklere Farbe für Hover */
    border-color: #c21f38 !important;
}

.btn-outline-primary {
    color: #e12643 !important;
    border-color: #e12643 !important;
}

.btn-outline-primary:hover {
    background-color: #e12643 !important;
    color: white !important;
}

.field-wrapper {
    display: flex;
    align-items: center;
    gap: 10px; /* Abstand zwischen den Zellen */
    margin-bottom: 10px;
    padding-right: 10px;
}

    .field-wrapper > div {
        display: flex;
        align-items: center;
        gap: 5px;
        padding-right: 20px;
    }


    .field-wrapper label {
        min-width: 150px; /* Feste Breite für das Label */
        margin-right: 10px; /* Optional: Abstand nach dem Label */
        text-align: left;
    }

    .field-wrapper input,
    .field-wrapper select {
        flex: 1;
        padding: 5px;
        font-size: 1rem;
        margin-right: 0px;
    }


.dimension-input-wrapper {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-auto-rows: auto; /* jede Zeile so hoch wie ihr Inhalt */
    row-gap: 10px; /* Abstand zwischen den Zeilen */
    align-items: center;
}


.dimension-input-lable {
    grid-column: 1;
    grid-row: 1;
    margin-right: 20px;
/*    width: 100px;
    align-self: center;*/
    margin-right: 20px;
}

.dimension-input {
    display: flex;
    align-items: center;
    grid-column: 2;
    justify-self: end;
    margin-right: 10px;
    overflow: visible;
}

    .dimension-input:nth-of-type(1) {
        grid-row: 1;
    }

    .dimension-input:nth-of-type(2) {
        grid-row: 2;
    }

/* Damit der Separator über die gesamte Breite geht */
.separator {
    grid-column: 1 / -1; /* Nimmt alle Spalten ein */
    grid-row: 3;
    height: 1px;
    background-color: #ccc;
    margin-top: 5px;
    margin-bottom: 5px;
}


.input-container {
    display: flex;
    align-items: center;
    gap: 5px; /* Abstand zwischen Input und Einheit */
    width: 100%;
}

/* Einheitliche Definition für Input-Felder */
.form-input {
    width: 100%; /* Füllt den flex-Container */
    max-width: 100px; /* Aber nicht größer als 80px */
    padding: 6px;
    font-size: 1rem;
    flex: 1; /* dehnt sich im Container aus */
    padding: 8px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box; /* Damit Padding und Border in der Breitenberechnung berücksichtigt werden */
    width: 75px;
}
.form-input, select {
    flex: 1; /* Nimmt den verfügbaren Platz ein */
    min-width: 50px; /* Minimale Breite */
}
    /* Optionale Focus-Styles für bessere Interaktion */
    .form-input:focus {
        outline: none;
        border-color: #e12643; /* z. B. Markenfarbe */
        box-shadow: 0 0 5px rgba(225,38,67,0.5);
    }


input[type="text"].form-input {
    max-width: 400px; 
    width: 200px;
}

/* Label für Einheiten, falls zusätzliche Abstände benötigt werden */
.unit-label {
    margin-right: 100px;
}

.row {
    display: flex;
    flex-wrap: nowrap;
}


.left-panel.col-sm-4 {
    flex: 0 0 500px; /* Größe hängt vom Inhalt ab */
    padding: 20px;
    background-color: #f8f9fa;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.left-panel .d-flex {
    width: 100%;
    max-width: 500px;
}

.right-panel.col-sm-8 {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#form-container {
    display: block;
    width: 100%;
    max-width: 500px;
}


/* Für WebKit-Browser */
::-webkit-scrollbar {
    width: 8px; /* Vertikaler Scrollbar */
    height: 8px; /* Optional: Horizontaler Scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3); /* Farbe des Schiebers */
    border-radius: 10px; /* Abgerundete Ecken */
    border: 2px solid transparent; /* Optional: für etwas "Luft" */
    background-clip: content-box;
}

::-webkit-scrollbar-track {
    background: transparent; /* Unsichtbare "Schiene" */
}

::-webkit-scrollbar-button {
    display: none; /* Entfernt die Scroll-Pfeile */
}
/* Für Firefox */
.scrollable-element {
    scrollbar-width: thin; /* Oder "auto" oder "none" */
    scrollbar-color: rgba(0,0,0,0.3) transparent;
}


.custom-checkbox .form-check-input {
    width: 1.25em;
    height: 1.25em;
    border: 2px solid;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin-top: 0;
}

    /* Checked */
    .custom-checkbox .form-check-input:checked {
        background-color: #e12643;
    }

    /* Hover */
    .custom-checkbox .form-check-input:hover {
        border-color: #e12643;
    }

    /* Focus */
    .custom-checkbox .form-check-input:focus {
        box-shadow: 0 0 0 0.2rem rgba(225, 38, 67, 0.25);
    }

