/* For Webkit (Chrome, Safari, Edge)  */
.test-css-update-aaa{
    --test-var: var(111);
}

::-webkit-scrollbar {
    width: 10px; /* Width of the vertical scrollbar */
    height: 10px; /* Height of the horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: transparent; /* Color of the tracking area */
}

::-webkit-scrollbar-thumb {
    background: #888; /* Color of the scroll thumb */
    border-radius: 10px; /* Roundness of the scroll thumb */
}

::-webkit-scrollbar-thumb:hover {
    background: #555; /* Color when hovering over the scroll thumb */
}

/* For Firefox */
* {
    scrollbar-width: thin; /* "auto" or "thin" */
    scrollbar-color: #888 transparent; /* thumb and track color */
}


html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #333;


}

p {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}


@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Bounce animation keyframes */
@keyframes bounce {
    0% {
        transform: scaleY(0);
    }
    60% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}


.button, .PinturaButtonExport {
    background: #f58627 !important;
    /* background: #888; */
    color: #000;
    padding: 9px 18px;
    border: none;
    border-radius: 20em;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.button:hover,
.PinturaButtonExport:hover {
    background: #c46716 !important;
    transform: scale(1.05);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.8);
}

.button:disabled {
    background-color: #2e2e2e !important; /* Grey background */
    color: #eee; /* Darker text to indicate it's disabled */
    cursor: not-allowed; /* Cursor to indicate the button is not interactive */
}

.button:disabled:hover {
    transform: none; /* No hover effect */
    box-shadow: none; /* No shadow effect */
}


.dissaprove-button {
    background-color: #E74C3C !important;
}

.dissaprove-button:hover {
    background-color: #b1392c !important;
}

.approve-button {
    background-color: #4BB543 !important;

}

.approve-button:hover {
    background-color: #347c2f !important;
}


.icon-button {
    background: transparent;
    border: none;
    border-radius: 20em;
    cursor: pointer;
    transition: transform 0.3s ease;

}

.icon-button:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.8);
}

.title {
    font-weight: bold;
    font-size: 24px;
}

.login-parent-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    margin: 0;
}

.login-container {
    background-color: #121212bb;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 320px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    backdrop-filter: blur(10px);
}

.login-container h2 {
    margin-bottom: 20px;
    color: #eee;
}

.login-title {
    font-size: 24px;
    font-weight: 100;
    color: #eee;
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
    user-select: none;
}

.login-container input {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.button .login-container-button {
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    align-self: flex-end;
    margin-top: auto;
}

.button .login-container-button:hover {
    background-color: #555;
}


.error {
    border: 2px solid red;
}


.spinner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000000;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.relative {
    position: relative;
}

.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #acf5ee;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.hidden {
    display: none;
}

.blurred {
    backdrop-filter: blur(8px);
}


* {
    /* box-sizing: border-box; */
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;

}

.label {
    color: #777777;
    font-size: .7em;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    user-select: none;
}

.dynamic-label {
    position: absolute;
    padding-right: 10px;
    top: 30px;
    display: inline-block;
    text-align: left;
    z-index: 1000;
    pointer-events: none;
    transition: none;
    font-size: 0.7em;

}

.focused-label {
    position: relative;
    padding-right: 0;
    transform: scale(0.78);
    transform-origin: left top;
    transition: all 0.4s linear;
    top: 0;
    margin-bottom: -4px;
    font-size: 0.7em;
}

#additionalProducts, #furnitureProducts {
    padding-top: 0;
    padding-left: 0;
}

.brief-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Take full width of the parent */
    height: 100%; /* Take full height of the parent */
}

/* Class for the blurred and black background style */
.brief-container.blurred-background {
    background-color: rgba(0, 0, 0, 0.9); /* Black background with 90% alpha */
    backdrop-filter: blur(2px); /* Blur effect for the background */
    z-index: 5000;
}

/* Class for the no background and no blur style */
.brief-container.no-background {
    background-color: transparent; /* No background */
}

.grid-background {
    background-color: rgba(12, 12, 12, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 1% 1%;
    width: 100%;
    height: 100%;
    max-height: 100%; /* Set a maximum height */
    /* display: flex; */
    /* flex-direction: column; */
    overflow-y: hidden;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    box-sizing: border-box;
}


.grid-background::-webkit-scrollbar {
    display: none;
}


.grid-container-order {
    width: 100%;
    height: 100%;
    max-height: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 0.8fr 0.1fr 0.1fr;
    /* grid-template-rows: repeat(auto-fit, minmax(20px, auto)); */
    grid-template-rows: 0.2fr 0.2fr 0.2fr 0.2fr 0.4fr 0.4fr 0.4fr 0.15fr;
    gap: 0.3em;

}


.grid-item {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #222222;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
    color: white;
    overflow-y: auto;
    z-index: 12;
    box-sizing: border-box;
    max-height: 100%;
    border-color: #eeeeee11;
    border-width: 2px;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}


.grid-item::-webkit-scrollbar {
    display: none;

}


.task-name {
    display: flex;
    flex-direction: column; /* Align children vertically */
    justify-content: space-between; /* Distribute space between and around content items */
    grid-column: 2 / span 2;
    grid-row: 1 / span 1;
    z-index: 498;

    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}


.task-name::-webkit-scrollbar {
    display: none;
}

.client {
    grid-column: 2 / span 2;
    grid-row: 2 / span 1;
    z-index: 500;
    /* overflow: hidden; */
}

.due-date {
    display: flex;
    flex-direction: column; /* Align children vertically */
    justify-content: space-between; /* Distribute space between and around content items */
    grid-column: 2 / span 1;
    grid-row: 3 / span 1;
    z-index: 498;
    /* overflow: hidden; */

}

.task-priority {
    display: flex;
    flex-direction: column; /* Align children vertically */
    justify-content: space-between; /* Distribute space between and around content items */
    grid-column: 3 / span 1;
    grid-row: 3 / span 1;
    z-index: 498;
}


.assignee3D {
    grid-column: 2 / span 1;
    grid-row: 4 / span 1;
    z-index: 500;
}

.assigneeEU {
    grid-column: 3 / span 1;
    grid-row: 4 / span 1;
    z-index: 500;
}

.task-name .label {
    align-self: flex-start;
    position: absolute;
}

.task-name p {
    flex-grow: 1;
    margin: 0;
    display: flex;
    align-items: center;
}

.decoration {
    grid-column: 1 / span 2;
    grid-row: 11 / span 1;
}

.plus-decoration-button {
    position: absolute;
    right: 0;
    bottom: 0;
    border-style: none;
    background-color: inherit;
    color: #eee;
    transition: transform 0.3s ease;
    cursor: pointer;
    z-index: 2000;
    padding: 8px;
    border-radius: 10px;
}

.plus-decoration-button:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.8);
}


.additional-products {
    grid-column: 2 / span 2;
    grid-row: 5 / span 1;
}

.furniture-products {
    grid-column: 2 / span 2;
    grid-row: 6 / span 1;
}

/*.furniture-products textarea, .additional-products textarea{*/
/*    scrollbar-width: thin;*/
/*    padding-right: 2px;*/
/*}*/

.additional-products, .furniture-products {
    padding-right: 2px;
}


.attachments .feedback-attachments .label {
    align-self: flex-start;
}


.attachments {
    /* display: flex; */
    flex-direction: column;
    grid-column: 2 / span 2;
    grid-row: 7 / span 1;

}

.attachments-grid {
    /* flex-grow: 1; Takes up all available space */
    overflow-y: auto; /* Scrollbar if content overflows */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-auto-rows: 100px;
    gap: 10px;
    background-color: transparent;
    border-radius: 1em;
    padding: 10px;
    /*margin-top: 10px;*/
}

.attachments-grid.drag-over {
    background-color: #f0f0f0; /* Example color, adjust as needed */
}

.order-button-container {
    grid-column: 2 / span 2;
    grid-row: 8 / span 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 1em;
    background-color: transparent;
    border-width: 2px;
    /* border-style: groove;
    border-color: #eeeeee11;
    padding: 0%; */
}

.order-button {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1em;
    z-index: 1000;
}

.main-reference {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / span 1;
    grid-row: 1 / -1;
    width: 100%;
    transition: filter 0.3s;
    object-fit: cover;
}

.image-viewer-button {
    background-color: transparent;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    cursor: pointer;
    align-self: center;
    border-radius: 20em;
    pointer-events: auto;
}

.image-viewer-button-container {
    position: absolute;
    height: calc(100% - 20px);
    display: grid;
    pointer-events: none;
}

.image-viewer-button path {
    fill: transparent;
}

.image-viewer-button:hover {
    background-color: rgb(18 18 18 / 38%);
    backdrop-filter: blur(2px);
}

.image-viewer-button:hover path {
    fill: #eeeeee;
}

#image-viewer-button-container__left {
    left: 3%;
}

#image-viewer-button-container__right {
    right: 3%;
}


.main-reference-overlay {
    position: absolute;
    bottom: 1em;
    width: 30%;
    height: 10%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #eee;
    transition: opacity 1s ease, visibility 1s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000000;
    user-select: none;
    background: #12121299;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
}

.main-reference-overlay p {
    text-wrap: balance;
    text-align: center;
}

/* .feedback-main-reference:hover .main-ref-image {
  filter: brightness(60%) blur(2px);
} */

.feedback-main-reference:hover .main-reference-overlay {
    opacity: 1;
    visibility: visible;
}

.feedback-main-reference.no-hover:hover .main-ref-image {
    filter: none;
}

.feedback-main-reference.no-hover:hover .main-reference-overlay {
    opacity: 0;
    visibility: hidden;
}

/*.main-reference:hover .main-ref-image {*/
/*  filter: brightness(60%) blur(2px);*/
/*}*/

.main-reference:hover .main-reference-overlay {
    opacity: 1;
    visibility: visible;
}

.main-reference.no-hover:hover .main-ref-image {
    filter: none;
}

.main-reference.no-hover:hover .main-reference-overlay {
    opacity: 0;
    visibility: hidden;
}


.text-input {
    width: 100%; /* Full width of the container */
    height: 100%; /* Full height for textarea, adjust if necessary for text inputs */
    /* padding: 10px; Padding inside the input/textarea */
    background: none; /* No background */
    border: none; /* No border */
    color: white; /* Text color */
    box-shadow: none; /* No box shadow */
    border-radius: 5px; /* Slight rounding on corners */
    text-align: left; /* Align text to the left */
    line-height: normal; /* Use the normal line-height */
    overflow-y: scroll; /* Prevents scrollbar appearance */
    resize: none; /* Disables resize handle */
    cursor: text;
}

input.text-input {
    display: block; /* Change input display to block to allow height manipulation */
    width: calc(100% - 20px); /* Adjust width to account for padding */
    height: auto; /* Let the input height grow with content */
    padding: 10px; /* Add padding */
    min-height: 20px; /* Minimum height for a single line */
}

.text-input::placeholder {
    color: #888; /* Lighter color for placeholder text */
}

/* To remove the blue outline on focus for Webkit browsers */
.text-input:focus {
    outline: none;
}


.grid-container-project {
    width: 100%;
    height: 100%;
    max-height: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns:  0.7fr 0.3fr;
    grid-template-rows: 0.69fr 0.03fr 0.2fr 0.08fr;
    gap: 0.3em;

}


.feedback-main-reference {
    grid-column: 1 / span 1;
    grid-row: 1 / span 1;
    overflow: hidden;
    border-radius: 10px 10px 0px 0px;
    border-width: 2px 2px 0px 2px;
}


.feedback-attachments {
    display: flex;
    flex-direction: column;
    grid-column: 1 / span 1;
    grid-row: 3 / span 3;
    margin-top: -0.3em;
    gap: 0px;
    border-radius: 0px 0px 10px 10px;
    border-width: 0px 2px 2px 2px;
}


.feedback-project-info-container {
    padding-top: 25px;
    /* padding-right: 20px; */
    grid-column: 2 / span 1;
    grid-row: 1 / span;
}
.main-chat-container {
    grid-column: 2/ span 2;
    grid-row: 2/ span 3;
    overflow-y: hidden;
}
.feedback-chat {
    border-radius: 10px 10px 0px 0px;
    border-width: 2px 2px 0px 2px;
    box-sizing: border-box;
    margin-bottom: 5px;
}


.feedback-chat-input {

}


.feedback-button {
    flex: 1; /* Stretch each button to fill the container */
    margin: 5px 0; /* Add some margin between buttons */
    max-height: 50px;
}


.select-version-container {
    width: 100%;
    background: #121212;
}

.feedback-input-container {
    display: flex;
    align-items: center;
}

.feedback-input-container .text-input {
    padding: 10px;
    margin-right: 10px;
    scrollbar-width: thin;
}

.feedback-input-container::-webkit-scrollbar {
    display: none;
}


.send-message-button {
    padding: 10px 15px 5px 15px;
    border: none;
    border-radius: 20em;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.send-message-button:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.8);

}


.chat-bubble {
    padding: 10px;
    margin: 5px;
    border-radius: 10px;
    max-width: 50%;
    position: relative;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.8);

}

.chat-bubble.user {
    background-color: #f58627;
    color: #000;
    margin-left: auto;
    text-align: left;
    border-radius: 10px 10px 1px 10px;
}

.chat-bubble.other {
    background-color: #474747;
    margin-right: auto;
    text-align: left;
    border-radius: 10px 10px 10px 1px;
}

.timestamp {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 2px;
}

.user .timestamp {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

.other .timestamp {
    text-align: left;
    margin-right: auto;
    margin-left: 0;
}


.feedback-project-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    flex-grow: 1;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    /* flex: 1;  */
    overflow-y: visible
}

.info-row .label {
    flex: 0 0 30%;
    font-weight: bold;
    line-height: 1.5;
}

.info-row p,
.info-row input {
    flex: 1;
    margin: 0;
    line-height: 1.6;
    /* overflow: visible;
    white-space: normal;  */
    overflow-wrap: break-word;
}

hr {
    border: none;
    border-top: 1px solid #444;
    margin: 10px 0;
}


.info-row {
    flex-shrink: 0;
    padding: 5px 0;
}

.info-row p,
.info-row input {
    padding: 2px 5px;
    margin: 0;
    white-space: normal;
}

.project-info-button-container {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
}


.toolbar {
    grid-column: 1/span 1;
    grid-row: 2/ span 1;
    display: flex;
    position: relative;
    margin-top: -0.3em;
    padding: 0;
    box-sizing: border-box;
    border-color: #eeeeee22;
    border-width: 0px 2px 0px 2px;
    /* height: 100%; */
    width: 100%;
}


.toolbar svg, .toolbar img {
    margin-right: 4px
}

.toolbar-button {
    display: flex;
    background: #121212 !important;
    color: #f3f1f1;
    border-radius: 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    align-items: center;
    justify-content: center;
    border: none;
    width: auto;
    flex-grow: 1;
    height: 100%;
    font-size: 0.75em;
}

.toolbar-button:hover {
    z-index: 100;
    background: #444444;
}

.toolbar-button > .select-pure__select {
    display: flex;
    justify-content: center;
}

.toolbar-button img, .toolbar-button span {
    position: relative;
    margin-left: 0;
    margin-top: 0;
    padding-top: 0;
}

.small-toolbar-button {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #121212;
    height: 100%;
    aspect-ratio: 1/1;
    flex-grow: 0;
    flex-shrink: 0;
    width: auto;
}

.small-toolbar-button:hover {
    z-index: 100;
    background: #444444;
}

.small-toolbar-button svg, .small-toolbar-button img {
    margin: auto;
}


.toolbar-dropdown-menu {
    display: none;
    position: absolute;
    right: 0%;
    flex-direction: column;
    background-color: #333;
    min-width: 160px;
    max-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 0 8px;
    z-index: 10000;
    margin-top: -10px;
}


.toolbar-dropdown-menu button {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: #eee;
    background-color: #333 !important;
    padding: 12px 16px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
    border-radius: 0%;
    text-align: left;
}


.toolbar-dropdown-menu button:hover {
    background-color: #555;
    border-radius: 0%;
}

.toolbar-dropdown-menu button:last-child {
    border-radius: 0 0 0 8px;
}


.disabled-button,
.toolbar-dropdown-menu .disabled-button {
    pointer-events: none;
    background: #444444;
    color: #808080;
}

.disabled-button svg {
    filter: brightness(50%);
}


/*
.feedback-files {
  grid-column: 6 / span 4;
  grid-row: 8 / span 6;
  flex-grow: 1;
  resize: none;
  overflow-y: scroll;
} */


.feedback-kontainer-fields {
    grid-column: 2 / span 1;
    grid-row: 1 / span 4;
    overflow-y: scroll;
    border-radius: 10px;
    border-width: 2px 2px 0px 2px;
}


.send-kontainer-button-container {
    grid-column: 2 / span 1;
    grid-row: 4 / span 1;
    border-radius: 0px 0px 10px 10px;
    margin-top: -.3em;
    border-width: 0px 2px 2px 2px;

}

.send-to-kontainer-button {
    width: 100%;
    height: 100%;
}


.main-ref-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}


@media (max-width: 768px) {
    .modal-box {
        width: 95%;
        height: 95vh;
        padding: 10px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(10, 10%);
    }

    .save-button {
        width: calc(100% - 20px);
        bottom: 10px;
        right: 10px;
    }

    .close-button {
        top: 10px;
        right: 10px;
    }
}


.grid-item::-webkit-scrollbar {
    width: 10px;
}

.grid-item::-webkit-scrollbar-track {
    background: #343434;
    border-radius: 10px;
}

.grid-item::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}


.main-reference-viewer {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: #343434;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20001;
    box-sizing: border-box;
    display: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    pointer-events: all;
}


.background-blur {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: inherit;
}

.fullscreen-div {
    position: fixed;
    display: flex;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: none;
    z-index: 20000;
}


.close-button {
    position: fixed;
    top: calc(50% - 40% - 10px);
    right: calc(50% - 40% - 10px);
    font-size: 30px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 2001; /* Ensure it's above the modal */
}

.close-button:hover {
    color: grey;
}


.kontainer-close-button-container {
    width: 100%; /* Full width of the container */
    margin-bottom: 10px; /* Space between fields */
}

.text-input, .textarea-input, .select-container {
    width: 100%; /* Full width of the field container */
    min-height: 50px; /* Minimum height */
    box-sizing: border-box; /* Include padding and border in the element's width and height */
    padding: 5px; /* Padding for text input */
    resize: none; /* Allow vertical resize only */
    background: none;
    color: #eee;
    background-color: transparent;
    border-radius: 0.5em;
    border: 1px solid #4e4e4e;
    /* padding-left: 3%; */
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    font-size: large;
    cursor: text;
}

.text-input::placeholder, .textarea-input::placeholder {
    color: #888; /* Lighter color for placeholder text */
}


.text-input::-webkit-scrollbar,
.textarea-input::-webkit-scrollbar,
.select-container::-webkit-scrollbar {
    display: none;
}


.select-container {
    display: flex;
    flex-direction: column;
}

/* Additional styling for SelectPure if needed */
.select-pure__select {
    width: 100%; /* Full width of the select container */
}


#card-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    height: 100%;
    background-color: #222;
}


.card {

    position: relative;


    flex: 0 0 auto;
    width: 25%;
    width: auto;
    min-width: 15%;
    max-width: 80%;
    height: 100%;
    overflow-y: auto;

    background-color: #212121;
    color: #fff;
    border-radius: 8px;
    box-shadow: 10px 0 5px -5px rgba(0, 0, 0, 0.5);
    cursor: default;
    transition: transform 0.3s;
    border-radius: 0 8px 8px 0; /* Border radius only on the right corners */
    z-index: 1001;
}


.card.dark {
    background-color: #212121; /* Dark grey background color */
}

.card.light {
    background-color: #252525; /* Light grey background color */
}

.card.animate-in {
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}

@keyframes slideOut {
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.card.animate-out {
    animation: slideOut 0.5s forwards;
}


.folder-order-button {
    position: absolute;
    right: 0;
    top: 7px;
    background-color: transparent !important;
    margin: 1% 5%;
    display: flex;
    gap: 5px;
    padding-left: 15px;
    padding-right: 15px;
}

.folder-order-button:hover {
    color: #303030;
    background-color: transparent;

}

.folder-order-button .select-pure__defaultIcon {
    position: relative;
    padding-top: 0;
    left: 3px;
    bottom: 2px;
}


.folder-button {
    display: flex; /* Use flexbox layout */
    align-items: center; /* Center items vertically */
    justify-content: space-between; /* Separate content and arrow */
    padding: 20px; /* Increased padding for taller buttons */
    margin: 0; /* Set margin to 0 for full width */
    border: none;
    border-radius: 0; /* Set border-radius to 0 for full-width buttons */
    background-color: transparent; /* Set background to transparent */
    color: #fff;
    text-align: left;
    cursor: pointer;
    width: 100%; /* Make buttons full width */
    position: relative; /* Needed for absolute positioning of the arrow */
    overflow: hidden;
    font-size: 18px; /* Adjust font size to your preference */
    height: 120px; /* Set a fixed height for taller buttons */
    border-radius: 0; /* Reset border-radius for all buttons */
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0);
    border-top: 1px groove #eeeeee11;
}

.folder-button p {
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* TODO FIX! */
.card .folder-button:last-child {
    border-bottom: 1px groove #eeeeee11;
}

.margin-top {
    margin-top: 60px;
}


.folder-button-content-container {
    flex-grow: 1; /* Allows content container to take available space */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensures space between text and bubble */
}

.task-count-bubble {
    background-color: #d16262;
    color: #eee;
    width: 17px;
    height: 17px;
    padding: 2px;
    border-radius: 50%;
    font-size: 0.6em;
    user-select: none;
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.priority-label {
    top: 5px;
    right: 5px;
    position: absolute;
    padding: 3px 6px;
    border-radius: 5px;
    font-size: 10px;
    background-color: rgb(101, 111, 125);
    color: #eee;
}

.priority-1 {
    background-color: rgb(227, 131, 136);
    color: black;
}

.priority-2 {
    background-color: rgb(251, 203, 92);
    color: black;
}

.priority-3 {
    background-color: rgb(135, 157, 255);
    color: black;
}

.priority-4 {
    background-color: rgb(101, 111, 125);
    color: black;
}


.folder-button-arrow {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #eee;
}


.active-folder .folder-button-arrow {
    display: block;
}


.folder-button:first-child {
    border-top-right-radius: 8px;
}


.folder-button + .folder-button {
    border-top-right-radius: 0;
}


.active-folder:first-child {
    border-top-right-radius: 8px;
}

.folder-button-text {
    flex-grow: 1;
    text-align: left;
    padding: 20PX;
}


.folder-button:hover {
    background-color: #303030;
}

.active-folder {
    font-weight: bold;
    background-color: #333333;
    color: #f58627;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

}


.active-folder::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    transform: translateY(-50%);
}

.sidebar-button {
    text-align: left;
    width: 100%;
}

.sidebar-button:hover {
    background-color: #374447;
}


.navbar {
    width: 100%;
    height: 50px;
    background-color: #333;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1005;
}

.navbar .title {
    color: #888888;
    font-size: 18px;
    margin-left: 10px;
    user-select: none;
    flex-shrink: 0;
}

.navbar .header-buttons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}

.navbar .header-button {
    background-color: transparent;
    border: none;
    color: #eee;
    width: 15vb;
    height: 100%;
    cursor: pointer;
    text-align: center;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9em;
    transition: transform 0.3s ease, background-color 0.3s ease, border-radius 0.3s ease;
}

.navbar .header-button:hover {
    background-color: #45464b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1056;
    border-radius: 0 0 8px 8px;
    transform: scale(1.1);
}

.navbar .header-button-active {
    color: #ddd;
    font-weight: bold;
    background-color: #45464b;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    z-index: 1050;
    border-radius: 0 0 8px 8px;
    transform: scale(1.1);
}

.navbar .right-icons {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.navbar .searchbar-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 15px;
}

.navbar #searchbar {
    width: 20vb;
    height: 30px;
    border-radius: 20px;
    background-color: #444;
    color: #eee;
    padding: 0 15px;
    border: none;
    resize: none;
    outline: none;
    font-size: 14px;
    display: block;
    line-height: 30px;
    overflow-x: auto;
    overflow: hidden;
    white-space: nowrap;
}

/* Notification Icon */
.notification-icon {
    position: relative;
    margin-right: 10px;
    cursor: pointer;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.notification-icon:hover .notification-bell {
    transform: rotate(20deg);
}

.notification-bell {
    height: 24px;
    width: 24px;
    transition: transform 0.3s ease;
}

.notification-count {
    display: none;
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: rgb(206, 63, 63);
    color: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.right-icon-container {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    flex-direction: row;
}

.profile-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: #f58627;
    color: #222;
    font-weight: bolder;
    text-align: center;
    cursor: pointer;
    user-select: none;
    margin-right: 10px;
    z-index: 20;
    transition: transform 0.3s ease;
}

.profile-icon:hover {
    transform: scale(1.1);
}


.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #333;
    min-width: 160px;
    max-width: 650px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 0 8px;
    z-index: 10000;
    transform-origin: top right;
    right: 0;
}

.dropdown-menu a {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.dropdown-menu a:hover {
    background-color: #555;
}


.dropdown-menu a:last-child {
    border-radius: 0 0 0 8px;
}

#notificationDropdown .dropdown-menu a:last-child {
    border-radius: 0px;
}

#notificationDropdown a:nth-of-type(2n+1) {
    background-color: rgba(80, 80, 80, 0.6);
}

#notificationDropdown {
    margin-right: -63px;

}


.notification-link {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-container {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
    padding-right: 40px;

    box-sizing: border-box;
}

.notification-project {
    font-weight: bold;
    font-size: 10pt;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-title {
    font-weight: bold;
    font-size: 6pt;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notification-message {
    white-space: nowrap;
    overflow: hidden;
    font-size: 8pt;

    text-overflow: ellipsis;
}


.notification-close {
    position: absolute;
    top: 0px;
    right: 5px;
    color: #d63a3a;
    cursor: pointer;
    font-size: 2em;
    transition: ease-in-out 0.3s;
}

.notification-close:hover {
    color: #ff0000;
    transform: rotate(90deg);
}

.no-notifications {
    padding: 10px;
    color: gray;
    text-align: center;
    pointer-events: none;
    user-select: none;
}


.pintura-editor {
    --color-background: 22, 22, 22;
    --color-foreground: 255, 255, 255;
}

.content-container {
    display: none;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    overflow-y: auto;
    background-color: #222;
    z-index: 10;
}


.non-nav-content-container {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    overflow-y: auto;
    background-color: transparent;
    z-index: 500;
    pointer-events: none;
}


.popup {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #121212bb;
    justify-content: center;
    align-items: center;
    z-index: 20002;
    backdrop-filter: blur(10px);

}

.popup-content {
    background: #222;
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 10px;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #eee;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
    word-wrap: break-word;
}

.popup p {
    text-align: center;
    color: #eee;
    text-wrap: wrap;
}


.popup-input {
    width: 80%;
    padding: 10px;
    justify-self: center;
    align-self: center;
    margin-bottom: 20px;
    border-radius: 4px;
    margin: 20px;
    cursor: text;
}

.popup-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    align-self: center;
    gap: 20%;
    width: 100%;
}


.popup-content-button {
    min-width: 20%;
    border: none;
    cursor: pointer;
    /* flex-grow: 1; */
}

.popup-content-button.confirm {
    background-color: rgb(63, 63, 63);
    color: #121212;
}

.popup-content-button.cancel {
    background-color: rgb(63, 63, 63) !important;
    color: #eee;
}


/* Toast container */
#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 30000;
}

/* Individual toast */
.toast-message {
    background-color: #333;
    color: #fff;
    padding: 16px;
    margin-bottom: 10px;
    border-radius: 20em;
    opacity: 0;
    border: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(-20px);
    text-align: center;
    pointer-events: none;
    display: flex;
    align-items: center;
}

.toast-message.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-message.hide {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.5s 0.5s, transform 0.5s 0.5s;
}


.toast-message.success {
    background-color: #4BB543;
}

.toast-message.error {
    background-color: #E74C3C;
}

.toast-message.warning {
    background-color: #F39C12;
}

.toast-message .close-button {
    margin-left: 15px;
    pointer-events: all;
    font-size: 25px;
    position: unset;


}


.fullscreen-drop-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(5px);
    background-color: rgba(110, 110, 110, 0.5);
    display: block;
    z-index: 100000000;
    align-items: center;
    text-align: center;
    pointer-events: none;
    opacity: 0;

}

.drag-over {
    opacity: 100;
}


.fullscreen-drop-area.active {
    display: flex;
    pointer-events: auto;
    opacity: 100;

}

.centered-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    color: #e4e4e4;
}

#dragDropText {
    text-align: center;
    margin: 0;
}


.upload-thumbnail-grid {
    width: 100%;
    height: 50%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-auto-rows: 100px;
    gap: 10px;
    overflow-y: auto; /* Scrollbar if content overflows */
    border-radius: 8px; /* Rounded corners */
    padding: 10px; /* Padding inside the grid */
    margin-top: 20px; /* Margin between the grid and large preview */
    background-color: #333; /* Dark background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.upload-thumbnail-grid.drag-over {
    background-color: #f0f0f0;
}


/* Styling for the thumbnail wrapper */
.thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.2s ease;

}

/* Styling for each thumbnail */
.thumbnail {
    position: relative;
    width: 100%;
    height: 75%;
    object-fit: cover;
    border-radius: 10px;
}

.thumbnail-file-name {
    font-size: 0.8em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
}

.tooltip {
    position: fixed; /* Position relative to the viewport */
    background-color: #fff;
    color: #121212;
    padding: 4px;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 99999999999;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    font-size: 0.8em;
}

.tooltip.visible {
    opacity: 0.7;
}

.thumbnail.ticked::after {
    position: absolute;
    content: '✔';
    top: 4px;
    right: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    color: green;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    border: 1px solid green;
}

.thumbnail-close {

    user-select: none;
    position: absolute;
    top: 3px;
    right: 3px;
    cursor: pointer;
    background-color: #121212;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: white;
    transition: transform 0.3s ease;
    z-index: 100;
}

.thumbnail-close:hover {
    transform: rotate(90deg);
}

.thumbnail-wrapper:hover {
    transform: scale(1.05);
    cursor: pointer;
}

.selected-thumbnail {
    border: 2px solid #f58627;
    border-radius: 10px;
    box-sizing: border-box;
}
.multi-selected-thumbnail {
    border: 2px solid #27b7f5;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: inset 0 0 0 100vmax rgba(39, 183, 245, 0.6); /* Blue overlay effect */
}

.remove-icon {
    display: inline-block;
    cursor: pointer;
    font-size: 16px; /* Adjust size as needed */
    transition: transform 0.3s ease;
    margin-left: 5px;
    user-select: none;

}

.remove-icon:hover {
    transform: rotate(90deg);
}

#disapprove-file-button {
    position: fixed;
    color: #121212;
    background-color: #822525;
    white-space: nowrap;
    visibility: hidden;
}

#disapprove-file-button.visible {
    visibility: visible;
    z-index: 9999999999;
}

.brief-container .close-brief-button {
    position: absolute;
    top: 2px;
    right: 2px;
    border: none;
    color: #eee;
    cursor: pointer;
    font-size: 36px;
    z-index: 100000;
    background-color: #9b4141;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    align-items: center;
    display: flex;
    justify-content: center;
}


/* Select pure css */

.select-wrapper {
    margin: auto;
    z-index: 2000000;
}

.select-pure__select {
    flex: 1; /* Fill the remaining space */
    background: transparent;
    color: #363b3e;
    cursor: pointer;
    justify-content: left;

    position: relative;
    transition: 0.2s;
    width: 100%; /* Full width of the parent */
    box-sizing: border-box;
}

.select-pure__defaultIcon {
    position: absolute;
    user-select: none;
    cursor: pointer;
    vertical-align: middle;
    left: 5px;
    padding-top: 7px;
}


.select-pure__options {
    border-radius: 20px;
    box-sizing: border-box;
    color: #e4e4e4;
    border: 1px solid #444;
    display: none;
    left: 0;
    max-height: 80%;
    overflow-y: scroll;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
    z-index: 500000;
    min-width: 100px;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: opacity 0.3s ease, transform 0.3s ease;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}


.select-pure__options::-webkit-scrollbar {
    display: none;
}


.select-pure__select--opened {
    display: block;
    opacity: 1;
    transform: scaleY(1);
    /* animation: bounce 0.3s ease; */
    color: #eee;

}


.select-pure__option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222222;
    box-sizing: border-box;
    flex-direction: column; /*  ToDo needs to be row for icons - column for thumbnails */
    line-height: 25px;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
    width: 100%;
}

.select-pure__option:hover {
    background: #a55a19; /* Lighter background color on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Drop shadow effect on hover */
    color: #222;
}


.select-pure__option--selected {
    background: #f58627;
    cursor: initial;
    pointer-events: none;

}

.select-pure__option--hidden {
    display: none;
}

.select-pure__selected-label {
    background: transparent;
    border-radius: 4px;
    color: #eee;
    display: inline-block;
    padding: 3px 7px;
    user-select: none;
    cursor: pointer;
    margin-left: 25px;

}

.select-pure__selected-label:last-of-type {
    margin-right: 0;
}

.select-pure__selected-label i {
    cursor: pointer;
    display: inline-block;
    margin-left: 7px;
}

.select-pure__selected-label i:hover {
    color: #e4e4e4;
}

.select-pure__autocomplete {
    background: #222222;
    border-bottom: 1px solid #444;
    border-left: none;
    border-right: none;
    border-top: none;
    box-sizing: border-box;
    font-size: 16px;
    outline: none;
    padding: 10px;
    color: #e4e4e4;
    width: 100%;
    cursor: text;

}

.select-pure__thumbnail {
    width: 100%; /* Default width */
    height: auto; /* Default height */
    transition: all 0.3s ease; /* Transition effect */
    border-radius: 10px;
    box-sizing: border-box;

}

.select-pure__iconContainer {
    margin-left: auto; /* Pushes the container to the right */
    display: flex; /* Uses flexbox for alignment */
    align-items: center;
}

.select-pure__icon {
    max-width: 80px;
    align-self: right;
    text-align: center;
    user-select: none;
    /* Default width */
    /* height: auto;
    margin-right: 10px;
    margin-left: auto; */

}

/* .select-pure__thumbnail:hover {
  width: 50%;
  height: auto;
} */


.select-pure__option--selected .select-pure__thumbnail {
    filter: brightness(50%); /* Adjust the brightness as needed (70% is an example) */
}

#orderDecorationText {
    overflow-y: scroll;
    overflow-wrap: anywhere;
}


/* Demo switch */


/* Label for the switch */
.switch-label {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 8px;
    font-weight: bold;
    color: #eee;
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 52px; /* Smaller width */
    height: 20px; /* Smaller height */
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #9a9a9a;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px; /* Smaller height */
    width: 16px; /* Smaller width */
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #f58627;
}

input:focus + .slider {
    box-shadow: 0 0 1px #5c320d;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px); /* Adjust for smaller size */
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 20px; /* Smaller radius */
}

.slider.round:before {
    border-radius: 50%;
}

#set-filters-button {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 1000;
}

.switch-label-mod {
    display: inline-block;
    max-width: 75px;
    text-wrap: balance;
    font-size: 0.75em;
}

.switch-mod {
    width: 40px;
}

#toggle-mark-complete input:checked + .slider {
    background-color: #19AC25;
}


.checkbox-wrapper-18 {
    position: absolute;
}


.checkbox-wrapper-18 .round {
    position: absolute;
    top: -12px;
    left: 5px;

    display: block;
    z-index: 1000;
    transition: transform 0.3s;
}

.checkbox-wrapper-18 .round label:hover {
    transform: scale(1.1);
}

.checkbox-wrapper-18 .round input[type="checkbox"]:active + label {
    transform: scale(0.9);
}


.checkbox-wrapper-18 .round label {
    display: block;
    position: relative;
    background-color: #ef5350;
    border-radius: 20em;
    height: 24px;
    width: 24px;
    cursor: pointer;
    background-size: 75%;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    transition: transform 0.3s;
}

.checkbox-wrapper-18 .round input[type="checkbox"] {
    visibility: hidden;
}

.checkbox-wrapper-18 .round input[type="checkbox"].unstaged + label {
    background-color: #444;
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M12%201C5.92487%201%201%205.92487%201%2012C1%2018.0751%205.92487%2023%2012%2023C18.0751%2023%2023%2018.0751%2023%2012C23%205.92487%2018.0751%201%2012%201ZM6.38228%204.96813C7.92196%203.73648%209.87497%203%2012%203C16.9706%203%2021%207.02944%2021%2012C21%2014.125%2020.2635%2016.078%2019.0319%2017.6177L6.38228%204.96813ZM4.96807%206.38235C3.73646%207.92201%203%209.875%203%2012C3%2016.9706%207.02944%2021%2012%2021C14.125%2021%2016.078%2020.2635%2017.6177%2019.0319L4.96807%206.38235Z%22%20fill%3D%22%23eeeeee%22/%3E%3C/svg%3E');
}

/* STAGED state - use checkmark SVG with blue background */
.checkbox-wrapper-18 .round input[type="checkbox"].staged + label {
    background-color: #007bff;
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20.7071%205.29289C21.0976%205.68342%2021.0976%206.31658%2020.7071%206.70711L9.70711%2017.7071C9.31658%2018.0976%208.68342%2018.0976%208.29289%2017.7071L3.29289%2012.7071C2.90237%2012.3166%202.90237%2011.6834%203.29289%2011.2929C3.68342%2010.9024%204.31658%2010.9024%204.70711%2011.2929L9%2015.5858L19.2929%205.29289C19.6834%204.90237%2020.3166%204.90237%2020.7071%205.29289Z%22%20fill%3D%22%23eeeeee%22/%3E%3C/svg%3E');
}

/* FULLY_APPROVED state - use checkmark SVG with green background */
.checkbox-wrapper-18 .round input[type="checkbox"].approved + label {
    background-color: #28a745;
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M20.7071%205.29289C21.0976%205.68342%2021.0976%206.31658%2020.7071%206.70711L9.70711%2017.7071C9.31658%2018.0976%208.68342%2018.0976%208.29289%2017.7071L3.29289%2012.7071C2.90237%2012.3166%202.90237%2011.6834%203.29289%2011.2929C3.68342%2010.9024%204.31658%2010.9024%204.70711%2011.2929L9%2015.5858L19.2929%205.29289C19.6834%204.90237%2020.3166%204.90237%2020.7071%205.29289Z%22%20fill%3D%22%23eeeeee%22/%3E%3C/svg%3E');
}

#project-name-order {
    line-height: 1.7em;
    padding-bottom: 2px;
}

.full-screen-image {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    object-fit: contain;
    background-color: rgba(12, 12, 12);
    z-index: 99999999999999999;
}

.popup-header {
    display: inline-flex;
    justify-content: space-between;
}

.popup-header p {
    font-size: x-large;
    font-weight: bold;
}

.close-set-filters-button {
    border: none;
    color: #eee;
    cursor: pointer;
    z-index: 100000;
    background-color: transparent;
    width: 25px;
    height: 25px;
    align-items: center;
    display: flex;
    justify-content: center;
}

#set-filters-popup-container .popup-content {
    padding: 30px 50px;
    margin: 0;
}

.set-filters-button-container {
    display: inline-flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.set-filters-content {
    display: flex;
    flex-direction: column;
}

.filter-group {
    display: inline-flex;
    margin-top: 10px;
}
.stage-group {
    gap: 10px;
}
.set-filters-content p {
    text-align: start;
}

.filter-group-header {
    margin-top: 20px;
    font-size: large;
    text-align: unset;
    position: relative;
}
.filter-group-header::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #eee;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 50%;
}
.assignee-column-header {
    margin-bottom: 10px;
}
.assignee-column-header::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #eee;
    opacity: 50%;
}
.switch-label-filter {
    display: inline-block;
    font-size: 0.75em;
}
.set-filter-assignee-grid {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: start;
    gap: 15px;
}
.toggle-group {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
}
.name-count-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

#chat-container{
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
}

#chat-header-container{
}

#chat-messages-container {
    overflow-y: auto;
    scrollbar-width: thin;
}
#chat-messages-container::-webkit-scrollbar {
    /*display: none;*/

}

#chat-input {

}

#progress-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(34, 34, 34);
    padding: 20px;
    border-radius: 8px;
    z-index: 9999999999;
    text-align: center;
    width: 50vw;
    height: 100%;
    max-height: 90vh;
    color: #ffffff;
    overflow: hidden;
    flex-direction: column;
}

#overall-progress-bar {
    position: sticky;
    top: 0;
    background-color: rgb(34, 34, 34); /* Ensure full background coverage */
    z-index: 10; /* Stay above scrolling content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); /* Visual distinction */
    padding: 0 5px;
}

#file-progress-bars {
    height: 100%;
    overflow-y: auto;
    margin-top: 10px;
    padding: 0 5px;/* Space between overall progress bar and file progress bars */
}

#file-progress-bars p {
    font-size: 0.8em;
}

.progress-bar {
    width: 100%;
    background-color: #9a9a9a;
    border-radius: 4px;
    overflow: hidden;
    height: 5px;
    margin: 10px 0;
}
#overall-progress-bar .progress-bar{
    height: 20px
}

.progress-fill {
    height: 100%;
    background-color: #f58627;
    width: 0%;
    transition: width 0.2s;
}

.file-progress {
    margin-bottom: 15px;
}

.extended {
    z-index: 100000099;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    height: 70%;
    width: 60%;
}

.r180 {
    rotate: 180deg;
}

#extend-chat-button.plus-decoration-button{
    position: absolute;
    top: 0;
    right: 0;
    bottom:  unset;
    padding: 10px;
    background-color: transparent;
}

