﻿
.AttentionLink {

    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
    text-decoration: none;
    background-color: #f8f8f8;
}

    .AttentionLink a {
        color: #333;
        text-align: right;
        padding: 8px 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
        text-decoration: none;
    }

        .AttentionLink a:visited {
            color: #FFA500;
        }

        .AttentionLink a:hover {
            color: #000;
            text-decoration: none;
            background-color: #e6e6e6; 
        }

.icon {
    color: #fff !important;
}

    .icon:hover {
        color: #fff !important;
        text-decoration: none !important;
        cursor: pointer;
    }

    .icon:active {
        color: #fff !important;
        text-decoration: none !important;
    }
    .icon::before {
        background-color: #000 !important
    }

.info-text {
    font-size: 12px;
    font-weight: normal;
    font-style: italic;
}
/*
.document-frame {
    padding: 30px;
    padding: 30px 20px 0px 30px;
    margin-top: 25px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    position: relative;
}
*/

.input-error {
    border-color: #dc3545 !important;
    background-color: #fff0f0 !important;
}


.card {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 10px !important;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    animation: fadeIn 0.5s ease-out; 
}
.card.warning{
    background-color: #f8d7da;
    border-color: #ffffff;
    color: #721c24;
}
.card.info{
    background-color: #fff;
    border-color: #e6e6e6;
    color: #0c5460;
}
.instructions-card {
    background-color: #f9f9f9; /* Light gray background */
    border: 1px solid #ddd; /* Subtle border */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Space inside the card */
    margin-bottom: 20px; /* Space below the card */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

    .instructions-card h4 {
        margin-top: 0; /* Remove top margin for the header */
        color: #333; /* Darker text for the header */
    }

    .instructions-card ul {
        padding-left: 20px; /* Indent the list */
        list-style-type: disc; /* Bullet points for the list */
        color: #555; /* Dark gray text for list items */
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

/* Slider button */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.link-list ul {
    list-style-type: none;
    padding: 0;
}

.SubmitButton {
    min-width: 60px;
    min-height: 60px;
    font-size: 20px;
}

.save-btn {
    background: #4DB6EB;
    color: white;
    width: 100%;
    text-align: center;
}

    .save-btn:hover {
        background: #3295C7;
    }

    .spinner-border {
        display: inline-block;
        width: 1rem;
        height: 1rem;
        border: 0.15em solid #f3f3f3;
        border-top: 0.15em solid #333;
        border-radius: 50%;
        animation: spin 0.75s linear infinite;
        margin-right: 0.5rem;
        vertical-align: text-bottom;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    .submit-btn-disabled {
        background-color: #aaa !important;
        cursor: not-allowed;
        color: #fff;
    }

.link-list .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 1rem 0;
    border-radius: 5px;
    border: 1px solid #DDD;
    transition: background-color 0.3s ease;
    background-color: #f8f9fa;
}

.link-list .title {
    font-size: 20px;
    margin-left: 5px;
    flex: 1;
}

.link-list .SubmitButton {
    margin-left: 1rem;
    white-space: nowrap;
    transition: background-color 0.3s, color 0.3s;
}

    .link-list .SubmitButton:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }


/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }
/* END slider button */

.group-marker {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 4px;
}
.form-container .show_all_ct {
    margin-bottom: 25px;
}

input[type="submit"],
input[type="button"],
.SubmitButton {
    min-width: 125px;
    background-color: #4DB6EB;
    color: white;
    padding: 14px 20px;
    margin: 0px 0 0 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

    input[type="submit"]:hover,
    .SubmitButton:hover {
        background-color: #409DCB;
        color: white;
    }

    .SubmitButton:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
/* Number input fields, style */ 
/* For Chrome, Safari, Edge, Opera */
.input-number-clean::-webkit-outer-spin-button,
.input-number-clean::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0;
}

/* For Firefox */
.input-number-clean {
    -moz-appearance: textfield !important;
}

/* Messpunkte */
.meassuremnt-grid {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

    .meassuremnt-grid .column {
        text-align: center;
        box-sizing: border-box;
        height: auto;
        padding: 10px;
    }
        .meassuremnt-grid .column:last-child{
            padding-bottom: 0px;
            margin-bottom: 0px;
        }

        .meassuremnt-grid .col-small {
            flex: 1;
        }

    .meassuremnt-grid .col-large {
        flex: 3;
        min-width: 180px;
        max-width: 180px;
        background-image: url("/images/legs_grey_3.png");
        background-size: 110% 90%;
        background-position-y: 60%;
        background-position-x: 50%;
        background-repeat: no-repeat;
    }

    .meassuremnt-grid .col-large-toe-left {
        flex: 3;
        min-width: 150px;    
        background-image: url("/images/toe_left_light_gray.png");
        background-size: 100% 90%;
        background-position-y: 60%;
        background-position-x: 50%;
        background-repeat: no-repeat;
    }

    .meassuremnt-grid .col-large-toe-right {
        flex: 3;
        min-width: 150px;
        background-image: url("/images/toe_right_light_gray.png");
        background-size: 100% 90%;
        background-position-y: 60%;
        background-position-x: 50%;
        background-repeat: no-repeat;
    }
    .meassuremnt-grid .col-large-clear {
        flex: 3;
        min-width: 180px;
        max-width: 180px;
    }

    .meassuremnt-grid .column div {
        position: relative;
    }

    .meassuremnt-grid input[type="text"],
    .meassuremnt-grid input[type="date"],
    .meassuremnt-grid input[type="number"],
    .meassuremnt-grid textarea {
        z-index: 1; 
        position: relative;
        text-align:center;
    }

    .meassuremnt-grid label {
        color: darkslategrey;
        position: absolute; 
        font-size: 11px;
        text-align: left;
        width: 20px;
        z-index: 2; 
        right: -24px; 
        top: 50%;
        transform: translateY(-50%); 
        pointer-events: none; 
    }
    .meassuremnt-grid .grid-header{
        font-weight: bold;
    }
    .meassuremnt-grid .filler {
        height: 27px;
        top: 12%;
        transform: translateY(-50%);
    }

    .meassuremnt-grid .filler-tiny {
        height: 1px;
    }

    .meassuremnt-grid .filler-small {
        height: 5px;
    }

    .meassuremnt-grid .filler-medium {
        height: 20px;
    }

    .meassuremnt-grid .filler-header {
        height: 16px;
    }

    /* the normal padding becomes too big for the measurement grid, too many inputs on one screen  */
    .meassuremnt-grid input[type="text"],
    .meassuremnt-grid input[type="number"] {
        padding: 5px;
        padding-left: 8px;
        padding-right: 8px;
    }

/* Allgemeines Grid */
.grid {
    display: flex;
    width: auto;
    justify-content: space-between;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    border: 1px solid #f9f9f9;
}

    .grid .column {
        text-align: center;
        box-sizing: border-box;
        height: auto;
    }

        .grid .column > div:nth-child(odd) {
            background-color: #f9f9f9; /* Lighter than the card background */
        }

        .grid .column > div:nth-child(even) {
            background-color: #FFFFFF; /* Even lighter for a subtle contrast */
        }

        .grid .col-small > div {
            border: 0px solid red;
            height: 35px;
            display: flex;
            align-self: center;
            justify-content:center;
            padding-top: 7px;
            margin-bottom: 0;
        }

        .grid .col-small > div input[type="checkbox"]{
            margin: 0;
            margin-top: 1px;
        }

    .grid .col-small {
        flex: 1;
        margin: 0;
    }

        .grid .col-large {
            flex: 3;
            min-width: 180px;
            max-width: 180px;
        }

    .grid .col-large-clear {
        flex: 3;
        min-width: 180px;
        max-width: 180px;
    }

    .grid .column div {
        position: relative;
    }

    .grid input[type="text"],
    .grid input[type="date"],
    .grid input[type="number"],
    .grid textarea {
        z-index: 1;
        position: relative;
        text-align: center;
    }

    .grid label {
        color: darkslategrey;
        position: absolute;
        font-size: 11px;
        text-align: left;
        width: 20px;
        z-index: 2;
        right: -24px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    .grid .grid-header {
        font-weight: bold;
        margin: 0;
    }
    .grid .filler {
        height: 27px;
        top: 12%;
        transform: translateY(-50%);
    }

    .grid .filler-tiny {
        height: 1px;
    }

    .grid .filler-small {
        height: 5px;
    }

    .grid .filler-medium {
        height: 20px;
    }

    .grid .filler-header {
        height: 16px;
    }

    /* the normal padding becomes too big for the measurement grid, too many inputs on one screen  */
    .grid input[type="text"],
    .grid input[type="number"] {
        padding: 5px;
        padding-left: 8px;
        padding-right: 8px;
    }

.header-container {
    background-color: #f7f7f7;
    padding: 10px 0;
    background-color: #f8f8f8;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    margin-left: -5px;
    margin-bottom: 40px !important;
}

.header-label {
    font-weight: bold; 
    margin-bottom: 5px; 
    text-align: center;
}

.header-data {
    font-size: 1em;
    text-align: center;
}

h1 {
    margin-bottom: 5px;
}

h2, h3 {
    color: #444;
}

    h2 + hr {
        margin-top: -20px;
        margin-bottom: 15px;
    }

h3 {
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
    letter-spacing: 0.5px;
}

    h3.special {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom:30px;
        margin-top: 20px;
        padding: 5px;
        text-decoration: none;
        background-color: #f8f8f8;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        letter-spacing: 0.5px;
    }


    h3.small-margin {
        margin-top: 0px;
        margin-bottom: 15px;
    }
    h3.small-margin-bottom {
        margin-bottom: 15px;
    }

.virtLabel {
    margin-bottom: 7px;
}

.longText {
    width: 100%;
}

input[type="checkbox"] {
    margin-right: 10px;
}

hr {
    border: none;
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table, th, td {
    padding: 0;
    padding-top: 4px;
    padding-bottom: 4px;
    text-align: left;
}

td {
    white-space: nowrap;
    vertical-align: text-bottom;
}

.flex-line {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

    .flex-line > div:first-child {
        margin-right: 5px;
    }

.line-full {
    flex-grow: 1;
}

    .line-full .line {
        width: 100%;
    }

.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
}

    .grid-container > div {
        flex: 1 0 200px; /* flex-grow | flex-shrink | flex-basis */
        margin: 10px;
        box-sizing: border-box;
    }

@media (max-width: 600px) {
    .grid-container {
        flex-direction: column;
    }

        .grid-container > div {
            margin-bottom: 20px;
        }
}

.flex-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1em;
}

    .flex-container div {
        flex: 1;
        text-align: left;
        width: auto;
    }

    .flex-container-padding {
        padding-left: 5px;
        padding-right: 5px;
    }

    .flex-container .counter-margin {
        margin-right: 0px;
    }

    .flex-container-center {
        display: flex;
        justify-content: space-between;
    }

    .flex-container-center div {
        flex: 1;
        text-align: center;
    }
    .flex-item {
        flex: 1;
    }

.line {
    border-bottom: 1px solid #000;
    width: 95px; 
    display: inline-block;
    vertical-align: text-bottom;
}

.parent-center-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex-container-checkbox {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

    .flex-container-checkbox div {
        margin-right: 10px;
        width: auto;
    }

.checkbox-container{
    white-space: nowrap;
}
.localisation-label {
    text-align: right;
}
.innerFormCT {
    padding: 0 10px 0 10px;
}
.form-container {
    padding: 10px;
    max-width: 700px;
    overflow: visible;
    margin: auto;
}
    .form-container div {
        margin-bottom: 8px;
    }

.form-table-container {
    padding: 10px;
    margin: auto;
    max-width: 1480px;
}

    .form-table-container .fill-column{
        width: 100%;
    }

.tableSpecial th {
    text-align: right;
}

.tableSpecial th,
.tableSpecial td {
    background-color: none;
    padding: 5px;
    border: none;
}

.tableSpecial label {
    margin-right: 25px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

input[type="text"],
input[type="date"],
input[type="datetime-local"],
input[type="time"],
input[type="password"],
input[type="number"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 10px;
    margin-right: 40px !important;
    box-sizing: border-box !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    background-color: #f8f8f8 !important;
    resize: none !important;
}

input[type="date"] {
    -webkit-appearance: none; 
    width: 100% !important; 
    padding: 10px !important; 
    margin-right: 40px !important; 
    box-sizing: border-box !important; 
    border: 1px solid #ccc !important; 
    border-radius: 4px !important; 
    background-color: #f8f8f8 !important;
    resize: none !important;
}
input[type="time"] {
    padding: 7px !important;
}

input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #CCC;
    width: 20px;
    height: 20px;
    outline: none;
    cursor: pointer;
    position: relative;
    border-radius: 3px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    margin-bottom: -5px;
}

    input[type="checkbox"]:checked {
        background-color: #f8f8f8;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" stroke-linecap="round" stroke-width="3" stroke="black" viewBox="0 0 24 24"><polyline points="20 6 9 17 4 12"></polyline></svg>');
        background-repeat: no-repeat;
        background-position: center;
    }

.select-group {
    margin-bottom: 2rem;
    /* margin-right: 10px;*/
}

    .select-group h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .select-group .dropdow_container {
        margin-bottom: 1rem;
    }

#sizes {
    background-color: #f5f5f5;
    padding: 1rem;
    border: 1px solid #ddd;
}

.dropdow_container select {
    width: 100%;
    padding: 10px;
    margin-right: 40px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    appearance: none; /* This helps in removing default browser styles for select elements */
    cursor: pointer;
}

    .dropdow_container select option {
        padding: 8px 12px;
        background-color: #f8f8f8; 
        color: #333; 
    }

        .dropdow_container select option:hover,
        .dropdow_container select option:focus {
            background-color: #e6e6e6; 
        }

/* Slider */
.switch {
    position: relative;
    display: inline-block;
    width: 34px;
    height: 20px;
}

    .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: 10px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 16px;
        width: 16px;
        left: 2px;
        bottom: 2px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #4DB6EB; /* Matches button primary color */
}

    input:checked + .slider:before {
        transform: translateX(14px);
    }
/* Slider END */



/* For larger screens */
@media (min-width: 700px) {
    .select-group {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem /* Spacing between selects */
    }
        .select-group .dropdow_container {
            flex: 1 1 calc(33.33% - 1rem); /* Three selects per row */
        }

    .extented-diagnosis-number-col {
        width: 160px;
    }
}
@media (max-width: 699px) {
    .select-group {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem 
    }

        .select-group .dropdow_container {
            flex: 1 1 calc(50% - 1rem); 
        }
}

.table-container {
    min-height: 479px !important;
}

.desktop-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    text-align: left;
    font-size: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

    .desktop-table a {
        color: #007BFF;
        text-decoration: none;
        transition: color 0.3s ease;
        padding: 0px 0;
    }

        .desktop-table a:hover {
            color: #0056b3;
            text-decoration: underline;
        }

    .desktop-table td {
        word-wrap: break-word;
        white-space: normal;
        overflow-x: auto;
    }

    .desktop-table thead,
    .desktop-table .thead {
        background: linear-gradient(to bottom, #f8f8f8, #f2f2f2); /* Gradient from slightly darker gray to light gray */
        color: black;
    }

    .desktop-table th, .desktop-table td {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        border: 1px solid #e0e0e0; 
        text-align: left;
    }

    .desktop-table th {
        font-weight: bold;
        position: relative;
        white-space: nowrap;
    }

    .desktop-table tbody tr:hover {
        /* background-color: #e6e6e6; */
    }

    .desktop-table tbody tr:nth-child(odd) {
        background-color: #f8f8f8;
    }

    .desktop-table .left{
        text-align: left;
    }

    .desktop-table .right{
        text-align: right;
    }

    .desktop-table .center{
        text-align: center;
    }

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

    .table a {
        color: #007BFF; 
        text-decoration: none;
        transition: color 0.3s ease;
        padding: 0px 0; 
    }

        .table a:hover {
            color: #0056b3; 
            text-decoration: underline;
        }

    .table td {
        word-wrap: break-word;
        white-space: normal;
        overflow-x: auto;
    }

    .table thead,
    .table .thead{
        background: linear-gradient(to bottom, #f8f8f8, #f2f2f2); /* Gradient from slightly darker gray to light gray */
        color: black;
    }

    .table th, .table td {
        padding: 10px;
        border-bottom: 1px solid #ddd;
        border: 1px solid #e0e0e0; 
        text-align: left;
        vertical-align: middle;
    }

    .table th {
        font-weight: bold;
        position: relative;
    }

    .table tbody tr:hover {
        /* background-color: #e6e6e6; */
    }

    .table tbody tr:nth-child(odd) {
        background-color: #f8f8f8;
    }

    .table .col-content{
        font-weight: normal;
    }

    .table .col-customer-number {
        text-align: center;
    }

    .table .col-case-number {
        text-align: left;
    }

    .table .col-created-at {
        text-align: center;
    }

    .table .col-updated-at {
        text-align: center;
    }

    .table .col-configured {
        text-align: center;
    }

    .table .col-button {
        white-space: nowrap;
    }

.desktop-content {
    display: block !important;
}
.desktop-content-flex {
    display: flex !important;
}

.mobile-content {
    display: none !important;
}
.mobile-content-flex {
    display: none !important;
}

@media (max-width: 767px) {

    .norton-checkbox-ct{
        width: 130px !important;
    }

    .desktop-content{
        display: none !important;
    }

    .desktop-content-flex {
        display: none !important;
    }

    .mobile-content{
        display: block !important;
    }
    .mobile-content-flex {
        display: flex !important;
    }

/* Erweiterte Diagnose */
    .extented-diagnosis-number-col{
        width: auto;
    }
        .extented-diagnosis-number-col:before{
            max-width: 65px !important;
            content: none !important;
        }
        .extented-diagnosis-number-col{
            justify-content:flex-end !important;
        }
        .extented-diagnosis-col-description:before {
            content: none !important;
        }
        .extented-diagnosis-col-no-result::before{
            content: none !important;
        }
        .extented-diagnosis-col-no-result{
            justify-content:center;
        }
    /* headline */
    .special.extended-diagnosis {
        border: 1px solid #ccc;
        letter-spacing: 1px;
    }

    .table.extended-diagnosis{
        margin-bottom: -25px; !important;
    }
/* Ende Erweiterte Diagnose */

/* Selbstbucher Termine */
    .self-scheduler-table td:before {
        max-width: 100px !important;
        text-align: right !important;
    }
    .self-scheduler-col-vereinbarung::before{
        content: none !important;
    }
/* ENDE Selbstbucher Termine */
    .table {
        box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
        margin: 15px 0px 25px 0px;
    }

        .ButtonContainer{
            margin-top: 0 !important;
        }

        .table thead,
        .table .table-header {
            display: none;
        }

        .table, .table tbody, .table tr, .table td {
            display: block;
            width: 100%;
            box-sizing: border-box;
        }

            .table th, .table td {
                border: 1px solid #edecec;
            }

            .table tr {
                margin-bottom: 1.5rem;
                box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
            }

            .table td:before {
                content: attr(data-label);
                float: left;
                flex-shrink: 0;
                text-align: left;
                width: 120px;
                font-weight: bold;
                color: #555;
                margin-right: 10px;
                border-right: 1px solid #e0e0e0;
                padding-right: 10px; 
            }

            .table td a {
                display: block;
                margin-top: 0px;
                padding: 0px 0;
                position: relative;
            }

                .table td a:before {
                    content: '';
                    position: absolute;
                    right: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    color: #007BFF;
                }

                .table td a:hover {
                }

            .table .table-footer{
                background-color: #0000FF !important;
            }
            /* Vorgangsübersicht */
            .table .col-customer-number {
                text-align: left;
            }

            .table .col-case-number {
                text-align: left;
            }

            .table .col-created-at {
                text-align: left;
            }

            .table .col-updated-at {
                text-align: left;
            }

            .table .col-configured {
                text-align: left;
            }

            .table .col-button {
                white-space: nowrap;
                text-align: right;
                justify-content: flex-end;
            }

            /* Terminübersicht Zellen */
            .table .col-termin-buchen-button:before {
                content: none;
                float: none;
                flex-shrink: 45;
            }
            .table .col-termin-buchen-button {
                padding: 10px;
                font-weight: bold;
            } 

            .table td {
                padding: 10px 15px;
                word-wrap: break-word;
                white-space: normal;
                overflow-x: auto;
                display: flex;
                align-items: flex-start; 
            }

            .table tr:nth-child(even) {
                background-color: #f8f8f8;
            }
}
