﻿body {
    margin: 0;
    background-color: #fff;
    font-family: Arial;
    font-size: 12px;
    color: #fff;
    width: 100%;
    height: 100%
}

table tr td {
    vertical-align: middle;
    border: 0;
    margin: 0;
    padding: 0
}

.GridView_Header {
    width: 100%;
    border-bottom: 1px solid #676874;
    color: #000;
    background-color: #676874;
    padding: 0;
    margin: 0;
    white-space: nowrap
}

.TableRow_Invers {
    width: 100%;
    border-bottom: 1px solid #676874;
    background: #f0f0f0 repeat-x top;
    color: #000;
    padding: 5px 0;
    margin: 0;
    white-space: nowrap;
    font-weight: 700
}

.GridView_Header th {
    cursor: pointer;
    padding: 0;
    padding-top: 2px;
    padding-bottom: 2px;
    background-color: #fff
}

.GridView_HeaderNoPadding th {
    cursor: pointer;
    padding: 0;
    padding-top: 0;
    padding-bottom: 0;
    background-color: #676874
}

.GridView_Body {
    width: 100%;
    border: 0 solid #676874;
    color: #000;
    background-color: #676874;
    padding: 0;
    margin: 0;
    white-space: nowrap
}

    .GridView_Body tr td {
        vertical-align: top;
        padding: 2px;
        white-space: normal;
        background-color: #fff;
        color: #000
    }

.GridView_Body_RowHoverEffect {
    width: 100%;
    border: 0 solid #676874;
    color: #000;
    background-color: #676874;
    padding: 0;
    margin: 0;
    white-space: nowrap
}

    .GridView_Body_RowHoverEffect tr td {
        vertical-align: top;
        padding: 2px;
        white-space: normal;
        background-color: #fff;
        color: #000
    }

    .GridView_Body_RowHoverEffect tr:hover td {
        vertical-align: top;
        padding: 2px;
        white-space: normal;
        background-color: #f0f0f0;
        color: #000;
        cursor: pointer
    }

.comboBoxGebinde {
    background-color: #ffe4b5
}

a {
    color: #005096;
    text-decoration: none
}

    a:visited {
        color: #005096
    }

    a:hover {
        color: #005096;
        text-decoration: underline
    }

    a:active {
        color: #005096
    }

.fixed-menu {
    position: fixed;
    top: 5px;
    right: 200px;
    background-color: #fff;
    width: 200px;
    font-size: 16px;
    z-index: 1000;
    box-shadow: -2px 0 5px #0000001a;
    display: none;
}

.my-button {
    background-color: #005096;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px #0003;
    transition: all .3s ease-in-out;
    cursor: pointer
}

    .my-button:hover {
        background-color: #005096;
        box-shadow: 4px 6px 12px #0000004d
    }

    .my-button:active {
        transform: scale(0.98)
    }

.my-buttonOrder {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 10px;
    box-shadow: 2px 4px 10px #0003;
    /*transition: all .3s ease-in-out;*/
    cursor: pointer
}

    .my-buttonOrder:hover { /* Fixed class name */
        background-color: #005096;
        border: 1px solid white;
        color: white;
        box-shadow: 4px 6px 12px #0000004d;
    }

    .my-buttonOrder:active {
        /*transform: scale(0.98);*/
    }


.my-dropdown {
    appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 4px 10px; 
    font-size: 14px;
    box-shadow: 2px 2px 6px #0000001a;
    cursor: pointer;
    transition: all .3s ease-in-out;
    width: 252px
}

    .my-dropdown:hover {
        border-color: #007bff
    }

    .my-dropdown:focus {
        border-color: #0056b3;
        box-shadow: 0 0 5px #005bb34d;
        outline: none
    }

    .my-dropdown::after {
        content: "▼";
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 14px;
        color: #555;
        pointer-events: none
    }

.my-textbox {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 4px 8px 4px 30px; 
    font-size: 14px;
    box-shadow: 1px 1px 4px #0000001a;
    transition: all .3s
}

    .my-textbox:hover {
        border-color: #007bff
    }

    .my-textbox:focus {
        border-color: #0056b3;
        box-shadow: 0 0 4px #005bb34d;
        outline: none
    }

.my-textboxSuche {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 4px 8px 4px 30px;
    font-size: 14px;
    box-shadow: 1px 1px 4px #0000001a;
    transition: all .3s
}

    .my-textboxSuche:hover {
        border-color: #007bff
    }

    .my-textboxSuche:focus {
        border-color: #0056b3;
        box-shadow: 0 0 4px #005bb34d;
        outline: none
    }

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #aaa;
    pointer-events: none; /* Prevent interaction with the icon */
}

.tooltip-container {
    position: relative;
    display: inline-block
}

    .tooltip-container .tooltip-bubble {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        background-color: #333;
        color: #fff;
        text-align: center;
        padding: 5px 10px;
        border-radius: 5px;
        white-space: nowrap;
        transition: opacity .3s ease-in-out;
        top: 120%;
        left: 100%;
        transform: translateX(10px);
        pointer-events: none;
        z-index: 1000
    }

@keyframes showTooltip {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.tooltip-container:hover .tooltip-bubble {
    visibility: visible;
    opacity: 1
}

.imageIcon:hover + .tooltip-bubble {
    opacity: 1;
    visibility: visible
}

.wizardDiv {
    position: absolute;
    opacity: 0;
    z-index: 1000;
    pointer-events: none;
    width: 650px
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px
}

    .slider:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 4px;
        bottom: 3px;
        background-color: #fff;
        transition: .4s;
        border-radius: 50%
    }

.switch input:checked + .slider {
    background-color: #4CAF50
}

    .switch input:checked + .slider:before {
        transform: translateX(26px)
    }

.custom-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.checkbox-container {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-size: 16px
}

    .checkbox-container .checkmark {
        width: 20px;
        height: 20px;
        background-color: #ddd;
        border-radius: 4px;
        display: inline-block;
        position: relative;
        transition: background .3s ease,box-shadow .2s ease
    }

        .checkbox-container .checkmark::after {
            content: "";
            position: absolute;
            display: none;
            left: 6px;
            top: 2px;
            width: 6px;
            height: 12px;
            border: solid #fff;
            border-width: 0 3px 3px 0;
            transform: rotate(45deg)
        }

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #005096;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s ease-in-out;
    border: 2px solid white;
}

    input[type="checkbox"]:hover {
        box-shadow: 0 0 5px #4caf5080
    }

    input[type="checkbox"]:checked {
        transform: scale(1.1)
    }

.message-box {
    margin-top: 10px;
    padding: 12px;
    background-color: #ffdddd;
    color: #d8000c;
    border: 1px solid #d8000c;
    border-radius: 5px;
    font-size: 14px;
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.message-boxorder {
    margin-top: 10px;
    padding: 12px;
    background-color: #005096;
    color: white;
    border: 2px solid black;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    display: block;
    opacity: 1;
    transform: translateY(0);
    /*    transform: translateY(-10px);*/
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.hidden {
    display: block !important;
    opacity: 0;
    transform: translateY(-10px);
}

.show {
    opacity: 1;
    transform: translateY(0);
}




.table-container {
    width: 100%;
    overflow-x: auto;
    position: relative;
    max-height: 400px; /* Set max height for scrolling */
}

.fixed-column-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

    /* Style for header and cells */
    .fixed-column-table th,
    .fixed-column-table td {
        padding: 10px;
        /*border: 1px solid #ccc;*/
        background: white;
        white-space: nowrap; /* Prevent text wrapping */
    }

        /* Fix first 4 columns */
        .fixed-column-table th:nth-child(-n+4),
        .fixed-column-table td:nth-child(-n+4) {
            position: sticky;
            left: 0;
            background: white;
            z-index: 2;
        }

    /* Ensure header stays fixed */
    .fixed-column-table thead th {
        position: sticky;
        top: 0;
        z-index: 3;
        background: white;
    }

    /* Add box-shadow for better UX */
    .fixed-column-table th:nth-child(4),
    .fixed-column-table td:nth-child(4) {
        /*box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.1);*/
    }


MV00_V00_Img_Marke {
    border-style: none;
    vertical-align: top;
    height: 125px;
    width: 150px;
    display: block; /* Ensures no extra spacing */
    object-fit: cover; /* Keeps the image contained within the set size */
}