﻿.collapsible-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0090d4;
    color: white;
    padding: 10px;
    cursor: pointer;
}

    .collapsible-header img {
        margin-right: 10px;
        border-radius: 50%; /* Make the image circular */
        width: 30px; /* Ensure the image has a fixed width */
        height: 30px; /* Ensure the image has a fixed height */
    }

    .collapsible-header .title {
        flex-grow: 1;
        text-align: left;
        font-size: 16pt !important;
        font-weight: bold !important;
    }

    .collapsible-header .arrow {
        transition: transform 0.3s;
        transform: rotate(180deg); /* Default state pointing downwards */
    }

    .collapsible-header.collapsed .arrow {
        transform: rotate(0); /* Rotated state pointing upwards */
    }

.unit {
    float: left;
}

.group {
    border-bottom: unset;
    border-style: solid;
    border-bottom-width: medium;
}

.group-item {
    border-bottom: unset;
    border-style: solid;
    border-bottom-color: white;
    border-bottom-width: thin;
}

.toggle-icon {
    padding: 5px;
}

.new {
    background-color: #575756 !important;
    color: white !important;
    text-align: center !important;
}

.endUserGroup {
    background-color: #0090d4 !important;
    color: white !important;
    border-color: white;
    border-right-width: 8px;
    font-weight: 700;
}

.endGroupMargin {
    border-color: white;
    border-right-width: 8px;
}


.tableInformationHeader {
    color: #0090d4;
    font-weight: bold;
    font-size: 14pt;
    line-height: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.columnWidth {
    width: 25%;
}