html, body {
    overflow-x: auto;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    height: 100%;
}

.gantt_layout_cell[data-cell-id="scrollHor"],
.gantt_layout_cell[data-cell-id="scrollVer"],
.gantt_layout_cell[data-cell-id="gridScroll"],
div#scrollHor, 
div#scrollVer, 
div#gridScroll,
div.gantt_hor_scroll, 
div.gantt_ver_scroll {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    background-color: #f5f5f5 !important;
    border: 1px solid #ddd !important;
}

.gantt_layout_cell[data-cell-id="scrollHor"],
.gantt_layout_cell[data-cell-id="gridScroll"],
div#scrollHor, 
div#gridScroll, 
div.gantt_hor_scroll {
    height: 17px !important;
    min-height: 17px !important;
    max-height: 17px !important;
    overflow-x: scroll !important;
    overflow-y: hidden !important;
}

.gantt_layout_cell[data-cell-id="scrollVer"],
div#scrollVer, 
div.gantt_ver_scroll {
    width: 17px !important;
    min-width: 17px !important;
    max-width: 17px !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
}

.gantt_layout_cell {
    box-sizing: border-box !important;
}

div#scrollHor::-webkit-scrollbar,
div#scrollVer::-webkit-scrollbar,
div#gridScroll::-webkit-scrollbar,
.gantt_hor_scroll::-webkit-scrollbar,
.gantt_ver_scroll::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

div#scrollHor::-webkit-scrollbar-track,
div#scrollVer::-webkit-scrollbar-track,
div#gridScroll::-webkit-scrollbar-track,
.gantt_hor_scroll::-webkit-scrollbar-track,
.gantt_ver_scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

div#scrollHor::-webkit-scrollbar-thumb,
div#scrollVer::-webkit-scrollbar-thumb,
div#gridScroll::-webkit-scrollbar-thumb,
.gantt_hor_scroll::-webkit-scrollbar-thumb,
.gantt_ver_scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
    border: 2px solid #f1f1f1;
}

div#scrollHor::-webkit-scrollbar-thumb:hover,
div#scrollVer::-webkit-scrollbar-thumb:hover,
div#gridScroll::-webkit-scrollbar-thumb:hover,
.gantt_hor_scroll::-webkit-scrollbar-thumb:hover,
.gantt_ver_scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.gantt_link_arrow {
    border-color: #4a90e2;
}

.gantt_line_wrapper div {
    background-color: #4a90e2;
}

.gantt_link_control {
    display: none;
}

.content-wrapper {
    width: 100%;
    height: auto;
    min-height: calc(100vh - 200px);
    overflow: visible;
    position: relative;
    z-index: 1;
}

.header {
    overflow: hidden;
    background-color: white;
    padding: 10px 30px 5px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow-x: auto;
}

.header .logo {
    display: flex;
    align-items: center;
    z-index: 1;
    margin: 10px 60px;
}

.header .logo img {
    max-width: 125px;  
    height: auto;
}

.header .title-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 0;
    white-space: nowrap;
}

.header .title-container h1 {
    color: #262626;
    font-size: 1.75em;
    margin-top: 0.45em;
}

.menu-container {
    display: flex;
    z-index: 2;
    font-size: 1.125em;
    margin-right: 30px;
    justify-content: flex-end; 
    width: 100%;
    max-width: 100%;
}

.menu-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-right: 30px;
    text-decoration: none;
    color: inherit; 
}

.menu-item img {
    width: 20px; 
    height: 20px;
    margin-right: 8px; 
}

.menu-item:hover {
    opacity: 0.8; 
}

.menu-item.active, .menu-item img.active {
    color: #262626; 
    font-weight: 600;
}

.menu-item {
    color: #a09f9f;
}

.card.full-width {
    flex-grow: 1;
    padding: 20px 30px;
}

.card.full-width h2, h3{
    margin: 10px;
    color: #262626;
    padding-left: 50px !important;
}

#no-project-message {
    display: none; 
    color: red; 
    text-align: center; 
    margin-top: 25px;
}

#projectsList, #sidebar-projectsList {
    list-style-type: none;
    padding: 0;
}

#projectsList li, #sidebar-projectsList li {
    margin: 20px 50px;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(148, 145, 145, 0.1);
    border: solid 1px rgba(228, 228, 228, 0.842); 
    border-radius: 4px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

#projectsList li:hover {
    background-color: #f0f0f0; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer; 
}

#projectsList ul, #sidebar-projectsList ul {
    list-style-type: none;
    padding-left: 0px;
}

#projectsList > li > ul > li {
    margin: 20px;
    padding: 8px;
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.26);
    border: none;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.082);
}

#projectsList > li > ul > li > ul > li {
    margin: 15px;
    padding: 6px;
    border: solid 1px white;
    background-color: rgba(245, 245, 245, 0.178);
}
#gantt_controls button:not(#project_link), .dhx_cal_container div[role=button] {
    padding: 10px 15px;
    margin: 10px;
    font-size: 12px;
    font-weight: 600;
    color: white;
    background: linear-gradient(to bottom, #129ED8, #003776); 
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100px;
}

.dhx_cal_container div[role=button] {
    padding: 25px 10px;
}

.dhx_cal_prev_button, .dhx_cal_next_button {
    width: 60px !important;
    padding-left: 30px;
}

.gantt-project-name, .calendar-project-name {
    color: linear-gradient(to bottom, #129ED8, #003776); 
    font-size: 1.5em; 
    font-weight: 600; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 55px;
}

.project-name, .tracker-name, .item-name, .sidebar.sidebar-project-name {
    cursor: pointer;
    user-select: none;
    padding: 10px;
    font-size: 1.125em;
    margin-left: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.project-name::before, .sidebar.sidebar-project-name::before {
    display: inline-block;
    transition: transform 0.3s;
}

.expanded > .project-name::before, .expanded > .sidebar.sidebar-project-name::before {
    transform: rotate(90deg);
}

.initial {
    min-width: 30px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.project-initial {
    color: #40AA1D;
    border: solid 2px #40AA1D;
    padding: 0 0 2px 1px;
}

.tracker-initial {
    border: solid 2px #00B0F0;
    color: #00B0F0;
}

.item-initial {
    border: solid 2px #ffab46;
    color: #ffab46;
    padding: 0 0 2px 1px;
}

.project-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


#gantt_here {
    width: 100%;
    height: calc(100vh - 200px);
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.gantt_grid_column_resize_wrap {
    cursor: col-resize;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.toggle-button {
    padding: 10px 20px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.toggle-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.toggle-button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sidebar-item-list a {
    text-decoration: none;
    color: #333;
}

.sidebar-item-list a:visited {
    color: #333;
}

#project_link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

#project_link:hover {
    color: linear-gradient(to bottom, #129ED8, #003776); 
}

.gantt-project-name:hover {
    background-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-color: #129ED8; 
    padding: 10px 30px;
}

.sidebar-item {
    cursor: pointer;
    padding: 5px;
    display: block;
}
.sidebar-item:hover {
    background-color: #f0f0f0;
}
.sidebar-item.highlighted {
    background-color: #e0e0e0;
    font-weight: bold;
}


 
.view-gantt-btn {
    padding: 15px 30px;
    margin: 10px 20px;
    font-size: 16px;
    color: rgb(214, 214, 214);
    background: linear-gradient(to bottom, #333, #000);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.1),
        0 10px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    gap: 15px;
}

.view-gantt-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(255,255,255,0.2) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0.2) 100%
    );
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.view-gantt-btn:hover::before {
    top: -100%;
    left: -100%;
}


.view-gantt-btn:hover {
    background: linear-gradient(to bottom, #000, #333);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(0,0,0,0.15),
        0 15px 30px rgba(0,0,0,0.1);
}

.view-gantt-btn:active {
    transform: translateY(1px);
    box-shadow: 
        0 2px 10px rgba(0,0,0,0.1),
        0 5px 15px rgba(0,0,0,0.05);
}

.view-gantt-btn {
    display: flex;
    align-items: center;
}

.view-gantt-btn img {
    width: 16px;
    height: 16px;
    filter: invert(1);
}


.gantt-controls, .calendar-controls {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 10;
    background-color: #fff;
}

.filters-row {
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
    width: 100%;
}

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

.filter-label {
    margin-right: 10px;
    font-weight: bold;
}

.filter-btn {
    padding: 8px 15px;
    margin: 0 5px;
    font-size: 14px;
    color: #333;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: #e0e0e0;
}

.filter-btn.active {
    background-color: #007bff;
    color: white;
    border-color: #0056b3;
}




.gantt-task-name {
    font-size: 1em;
    font-weight: 500;   
    color: rgb(53, 53, 53);
    text-decoration: none;
}

.gantt_grid_data .gantt_cell a,
.gantt_task_content a {
    text-decoration: none;
    color: inherit;
}

.gantt_grid_data .gantt_cell a:hover,
.gantt_task_content a:hover {
    text-decoration: underline;
    color: #007bff; 
}

.gantt_grid_data .gantt_cell {
    padding: 2px 6px !important;
    display: flex;
    align-items: center;
    white-space: normal !important;
    min-height: 100%;
}

.gantt_grid_scale .gantt_grid_head_cell {
    font-weight: bold;
    text-align: center;
    border-right: 1px solid #cecece;
}

.gantt_cell[data-column-name="status"] {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    word-wrap: break-word !important;
    line-height: 1.2;
    padding: 10px 6px !important;
}


.task-container {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 2px 0 0 0;
    height: 100%;
    min-height: 45px;
}


.project-name-button {
    display: flex !important; 
    justify-content: space-between !important; 
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 10;
    background-color: #fff;
}

.gantt-project-name-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.project-note-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
    z-index: 10;
    background-color: #fff;
}

.project-note-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 55px;
}

.project-note-input {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    box-sizing: border-box;
    transition: all 0.2s ease;
    background: #fff;
    resize: vertical;
    min-height: 40px;
}

.project-note-input:focus {
    outline: none;
    border-color: #129ED8;
    box-shadow: 0 0 0 3px rgba(18, 158, 216, 0.15);
    background: #fafafa;
}

.project-note-sticky {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 6px;
    background: linear-gradient(135deg, #fff9c4 0%, #fffacd 100%);
    border: 1px solid #f0e68c;
    border-radius: 2px;
    box-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.15),
        0 2px 4px rgba(0, 0, 0, 0.1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.05);
    width: 100%;
    position: relative;
    transform: rotate(-0.5deg);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.project-note-sticky:hover {
    transform: rotate(0deg);
    box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.2),
        0 3px 6px rgba(0, 0, 0, 0.15),
        inset 0 -1px 2px rgba(0, 0, 0, 0.05);
}

.project-note-pin {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #c0c0c0 0%, #808080 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset -2px -2px 0 rgba(0, 0, 0, 0.2);
}

.project-note-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.project-note-content {
    flex: 1;
    font-size: 14px;
    color: #2c2c2c;
    word-wrap: break-word;
    line-height: 1.5;
    padding-right: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 20px;
    outline: none;
    white-space: pre-wrap;
}

.project-note-content[contenteditable="true"] {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    padding: 4px 8px;
    margin: -4px -8px;
    cursor: text;
    border: 2px dashed rgba(18, 158, 216, 0.5);
}

.project-note-actions {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    margin-top: 4px;
    padding-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.project-note-edit,
.project-note-delete {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
    flex-shrink: 0;
    opacity: 0.8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.project-note-edit:hover,
.project-note-delete:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.project-note-edit:active,
.project-note-delete:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.gantt-description {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card.full-width.help-box, .card.full-width.warning-box {
    padding: 25px;
    border-radius: 15px;
    margin: 20px 60px;
    transition: all 0.3s ease-out;
    overflow: hidden;
    max-height: 1000px;
}

.card.full-width.help-box .content, 
.card.full-width.warning-box .content {
    padding: 10px 0px 20px 50px;
    transition: all 0.3s ease-out;
    opacity: 1;
    transform: translateY(0);
}

.card.full-width.help-box h3, 
.card.full-width.warning-box h3 {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    position: relative;
    z-index: 1;
    font-size: 1em;
    padding-top: 20px;
}

.card.full-width.help-box h3::after, 
.card.full-width.warning-box h3::after {
    content: '▼';
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.card.full-width.help-box.collapsed, 
.card.full-width.warning-box.collapsed {
    max-height: 55px;
}

.card.full-width.help-box.collapsed h3::after, 
.card.full-width.warning-box.collapsed h3::after {
    transform: rotate(-90deg);
}

.card.full-width.help-box.collapsed .content, 
.card.full-width.warning-box.collapsed .content {
    opacity: 0;
    transform: translateY(-100%);
}

.card.full-width.help-box {
    background-color: #ccf4ff;
}

.card.full-width.warning-box {
    background-color: #ffd2cc;
}

.time-filter {
    padding-right: 10px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 10px;
    }
    
    .header .title-container {
        margin-left: 0;
        text-align: center;
    }
    
    .view-gantt-btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    
    #projectsList li, #sidebar-projectsList li {
        margin: 10px;
        padding: 5px;
    }
    
    #projectsList li {
        margin: 10px 0;
        padding: 5px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        border-radius: 5px;
        transition: background-color 0.3s, box-shadow 0.3s;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .project-name {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .card.full-width h2, h3 {
        font-size: 1.2em;
        padding-left: 10px;
    }
    
    .card.full-width p {
        padding-left: 10px;
    }
    
    .menu-container {
        flex-direction: column;
        width: 100%;
    }
    
    .menu-item {
        margin: 5px 0;
    }
    
    .initial {
        width: 30px;
        height: 30px;
        font-size: 14px;
        line-height: 30px;
    }
    
    .project-name, .tracker-name, .item-name, .sidebar.sidebar-project-name {
        font-size: 14px;
        padding-left: 40px;
    }
    
    .gantt-task-name {
        font-size: 12px;
    }
    
    .gantt_row, .gantt_task_row {
        height: 35px !important;
    }
    .gantt-project-name {
        font-size: 16px;
        margin-bottom: 10px;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .project-name-button, .time-filter {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .assignee-filter-container {
        margin-top: 5px;
        width: 100%;
    }
    
    .assignee-filter-select {
        width: 100%;
        max-width: 100%;
    }
    
    .time-filter {
        margin-top: 10px;
    }
    
    .filters-row {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .content-chart .chart-section {
        display: none;
    }
    .view-gantt-btn {
        display: none;
    }
}

.draggable {
    cursor: move;
}

.dragging {
    opacity: 0.5;
}

.gantt_tree_content {
    height: auto;
    overflow: visible;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 5px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 5px;
}

.gantt_grid_data .gantt_cell, .gantt_grid_data .gantt_cell.gantt_last_cell {
    white-space: normal;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: auto;
    min-height: 45px;
}

.gantt_grid_data .gantt_tree_content {
    overflow: hidden;
    text-overflow: ellipsis;
}

.two-line-cell .gantt_tree_content {
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 40px;
    line-height: 20px;
}

.gantt_grid_column_resize_wrap {
    cursor: col-resize;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.gantt_grid_data .gantt_cell.gantt_cell_tree {
    white-space: normal;
    height: auto;
    padding: 5px 6px;
    display: flex;
    align-items: center;
}

.gantt-task-name, .dhx_cal_event_text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}

.gantt_task_content, .dhx_cal_event_clear {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}




.project-name {
    flex-grow: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.view-gantt-btn {
    flex-shrink: 0;
    margin-left: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}


.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.selector-container {
    margin-right: 45px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

#projectSelector, #trackerSelector {
    padding: 14px 18px;
    margin: 10px;
    font-size: 14px;
    color: #333;
    background: white;
    border: solid 1px rgb(216, 213, 213);
    border-radius: 4px;
    cursor: pointer;
    min-width: 400px;
}

#projectSelector:focus, #trackerSelector:focus {
    outline: none;
    border-color: rgb(214, 214, 214);
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.loading-indicator {
    display: flex;
    align-items: center;
    color: rgb(214, 214, 214);
    font-size: 14px;
}

.loading-indicator span {
    margin-left: 5px;
}

.selected-project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 50px 30px 50px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border-left: 4px solid rgb(214, 214, 214);
}

.selected-project-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.2em;
}

#ganttSearch {
    padding: 10px 30px 10px 50px;
    margin: 10px 60px 10px 10px;
    font-size: 14px;
    color: rgb(235, 224, 224);
    background: white url('/images/search.svg?v=1') no-repeat 20px center;
    background-size: 20px;
    border: solid 1px darkgrey;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 215px;
}

#projectSearch:focus, #ganttSearch:focus {
    outline: none;
    border-color: rgb(51, 51, 51);
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.2);
    color: rgb(24, 24, 24);
}

.highlight {
    background-color: #ffff99;
}

.setting-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 80px;
}

.setting-label {
    display: flex;
    align-items: center;
    font-weight: bold;
}

.switch, .slider, .slider.round {
    display: none;
}

.project-name span, .tracker-name span, .item-name span, .sidebar.sidebar-project-name span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    width: 40px;
    height: 40px;
}





.assignee-filter-select {
    padding: 9px 14px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: white;
    font-size: 12px;
    min-width: 200px;
    cursor: pointer;
}

.assignee-filter-select:hover {
    border-color: #454545;
}

.assignee-filter-select:focus {
    outline: none;
    border-color: #454545;
}

.filter-label span {
    margin-right: 10px;
    font-weight: 500;
}

/* ===== GANTT CHART MINIMAL STYLES ===== */

.gantt_task_line {
    background-color: #ffab46 !important;
    border-radius: 25px !important;
}

.gantt_task_line.project-task {
    background-color: #00B0F0 !important;
}

.gantt_tree_icon.gantt_open:before {
    content: "−";
}

.gantt_tree_icon.gantt_close:before {
    content: "+";
}
