
.work_container {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding: 30px 0px;
  gap: 40px;
  display: flex;
  flex-wrap: wrap;
}
.work_nav {
  flex: 0 0 25%;
  max-width: 25%;
  min-height: 400px;
  background: #f4f3f3;
  border-right: 1px solid #e6e6e6;
}
.work_content {
  flex: 0 0 calc(75% - 41px);
  max-width: calc(75% - 41px);
}
.work_nav ul {
  margin: 0px;
  padding: 0px !important;
  list-style: none !important;
  display: flex;
  flex-direction: column;
}
.work_nav ul li a {
  text-decoration: none !important;
  font-size: 16px;
  padding: 10px 20px;
  display: block;
  color: #000;
}
.work_nav ul li a.active, .work_nav ul li a:hover {
  background: #151515;
  color: #fff;
}



#time-logging-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.time-logging-header, .time-logging-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.time-logging-header {
    font-weight: bold;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

.project-column {
    flex: 2;
}

.day-column, .total-column {
    flex: 1;
}
.times_container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 70px;
  position: relative;
}

input.hour-input {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
}

input.total-hours {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    background: #f9f9f9;
    border: 1px solid #ccc;
    text-align: center;
}



.project-column {
  flex: 0 0 200px;
}
.time-logging-row select, .time-logging-row input {
  width: 100%;
  display: block;
  border: 1px solid #d2cacaa1;
  background: transparent;
  border-radius: 5px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  color: #000;
}
.time-logging-row input{
  border: 0px solid #d2cacaa1 !important;
   border-radius: 0px;
  padding: 0px !important;
    width: 30px;
    text-align: center;
      background: transparent !important;
}
.time-logging-row input:focus{
  border: none;
  outline: none;
}
.time-logging-row input[disabled] {
  opacity: .5;
}
.day-column {
  padding: 5px;
  font-size: 12px;
  color: #00000075;
  line-height: 1.2;
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
    flex: 0 0 80px;
  max-width: 80px;
  
}
.time-logging-row .day-column {
    border: 1px solid #d2cacaa1;
    border-radius: 5px;
}
.project-column {
  font-size: 12px;
  color: #00000075;
  line-height: 1.2;
}
.total-column {
  line-height: 1.2;
  font-size: 12px;
  color: #00000075;
  line-height: 1.2;
}



.work_btn {
  background: #000;
  border: 1px solid #000;
  color: #fff;
  padding: 8px 24px;
  border-radius: 5px;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: 500ms;
}
.work_btn:hover {
  background: transparent;
  color: #000;
}
.work_btn.work_btn_border {
  background: transparent;
  color: #000;
}
.work_btn.work_btn_border:hover{
    background: #000;
    border: 1px solid #000;
    color: #fff;
}
.hours_action {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}




.work_nav_weeks {
  display: inline-flex;
  gap: 10px;
  border: 1px solid #d2cacaa1;
  background: transparent;
  border-radius: 5px;
  padding: 5px;
  box-sizing: border-box;
  font-size: 14px;
  color: #000;
  align-items: center;
}
.prev_week {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.work_nav_weeks > div {
  font-size: 14px;
  color: #000;
  line-height: 1.2;
}




.work_h_top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.work_h_user {
  font-size: 14px;
  line-height: 1.2;
  border: 1px solid #d2cacaa1;
  background: transparent;
  border-radius: 5px;
  padding: 5px 20px;
}





.work_content h1 {
  margin: 0px;
  font-size: 32px;
  line-height: 1.4;
  padding-bottom: 20px;
}




.manage_project_row {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
#add-project-form {
  display: flex;
  flex-direction: column;
}
.projects_list_container {
  border-top: 1px solid #d2cacaa1;
  padding-top: 30px;
}

.pf_row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 20px;
}
.p_form label {
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 5px;
}
.p_form input[type="text"], .p_form input[type="tel"], .p_form input[type="number"], .p_form select {
  padding: 10px !important;
  border: 1px solid #d2cacaa1 !important;
  background: transparent !important;
  border-radius: 5px;
  margin-bottom: 20px;
  width: 100%;
}

#edit-project-form {
  margin-top: 20px;
}
.p_form button {
  margin-top: 20px;
}



#existing-projects ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#existing-projects ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0px;
  border-bottom: 1px solid #d2cacaa1;
}
#existing-projects ul li span {
  font-size: 16px;
  line-height: 1;
}
#existing-projects ul li input {
  width: 18px;
  height: 18px;
}
#existing-projects ul li span strong {
  text-align: center;
  display: inline-block;
}

#existing-projects ul li span:first-child {
  flex: 0 0 30px;
  max-width: 30px;
}
#existing-projects ul li span:last-child {
  flex: 0 0 100px;
  max-width: 100px;
}


.work_content table {
  border: none;
  width: 100%;
  border: 1px solid #d2cacaa1;
  border-collapse: collapse;
  border-spacing: 0;
}
.work_content table tr th, .work_content table tr td {
  border: 1px solid #d2cacaa1;
  font-size: 16px;
    padding: 5px;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
}
.show_hours_details_container {
  margin-top: 30px;
}

#calendar_table {
    width: 100%;
    border-collapse: collapse;
}

#calendar_table th, #calendar_table td {
    border: 1px solid #ddd;
    padding: 5px;
    text-align: center;
}

#calendar_table th {
    background-color: #f4f4f4;
}

#calendar_total {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}
.em_calendar {
  width: 100%;
  max-width: 100%;
  overflow: auto;
}

.us_cal {
  display: flex;
  gap: 10px;
}
.us_cal input {
  width: 60px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #d2cacaa1;
}
.us_cal .show_user_cal_btn.work_btn {
  font-size: 12px;
}
.em_calendar{
  display: none;
}
.hours_user_filter h3 {
  margin: 0px;
  padding-bottom: 5px;
}

.hours_user_group label {
  font-size: 15px;
}
.hours_user_group input {
  height: 24px;
  border: 1px solid #d2cacaa1;
  background: transparent;
  border-radius: 5px;
  font-size: 13px;
  padding: 0px;
}
#date-filter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.hours_user_filter {
  margin-bottom: 20px;
}

#existing-projects ul li span:nth-child(3) {
  flex: 0 0 150px;
  max-width: 150px;
    flex-direction: column;
  gap: 5px;
  display: flex;
}
#existing-projects ul li span:nth-child(2) {
  flex: 0 0 calc(100% - 380px);
  max-width: calc(100% - 380px);
}

#project_details {
  margin-top: 20px;
}


#login_form {
  padding: 30px;
  margin-top: 20px;
  max-width: 500px;
  margin-bottom: 20px;
  border: 1px solid #d2cacaa1;
  background: transparent;
  border-radius: 5px;
}
#login_form label, #edit_profile_form label{
  display: block;
  padding-bottom: 5px;
  font-size: 16px;
}
#login_form input, #edit_profile_form input{
  padding: 10px;
  width: 100%;
  border: 1px solid #d2cacaa1;
  background: transparent;
  border-radius: 5px;
}
#login_form > div {
  margin-bottom: 15px;
}
#login_message {
  margin-bottom: 0px !important;
}


#edit_profile_form .form-group {
  margin-bottom: 15px;
}

#employee-hours-table .work_btn {
  padding: 6px 20px;
}



#target-hours-form table {
  max-width: 300px;
  margin-bottom: 10px;
}
#target-hours-form label {
  display: block;
  margin-bottom: 5px;
}
#target-hours-form  > input {
  margin-bottom: 15px;
  max-width: 300px;
  width: 100%;
  border: 1px solid #d2cacaa1;
  font-size: 16px;
  padding: 5px;
}
#edit-target-hours-form {
  padding-top: 20px;
}
#edit-target-hours-form > h3 {
  margin-bottom: 10px;
}
.er_row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.er_col {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}

#holiday-request-form label {
    display: block;
    width: 100%;
    margin-bottom: 7px;
}

form#holiday-request-form input, form#holiday-request-form textarea, form#holiday-request-form select {
    width: 100%;
    border: 1px solid #d2cacaa1;
    background: transparent;
    border-radius: 5px;
    font-size: 13px;
    padding: 10px;
}
form#holiday-request-form textarea{
  height: 115px;
  resize: none;
}
form#holiday-request-form {
    margin-bottom: 30px;
}
.day-column.sick_leave {
  background: yellow;
}

.day-column.compensation {
  background: red;
}
.day-column.vacation {
  background: #72e384;
}
.day-column.public {
  background: #0087ffc4;
}
.day-column.school_education {
  background: #fdb32c;
}
.h_action {
  gap: 10px;
  display: flex;
}
.locked input, .locked select {
    pointer-events: none;
    opacity: .3;
}


.total_ex {
  position: absolute;
  right: 0px;
  width: 70px;
  text-align: center;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00000075;
}

.time-logging-header .day-column {
  flex-direction: column;
}
.total-column {
  display: flex;
  gap: 5px;
  align-items: center;
}
.remove-row {
  background: transparent;
  border: none;
  padding: 0px;
  font-size: 14px;
  color: #00000075;
  line-height: 1.2;
}

.select2-container .select2-search--inline {
  display: block;
  width: 100%;
}
.select2-container .select2-search--inline input {
  width: 100% !important;
  display: block;
}
.time-picker {
    position: relative;
    display: inline-block;
}

.dropdown {
    max-height: 150px;
    overflow-y: auto;
    z-index: 1000;
    width: 50px;
    padding: 5px;
    scrollbar-width: none;
}

.dropdown div {
    padding: 5px;
    cursor: pointer;
    text-align: center;
}

.dropdown div:hover {
    background: #f0f0f0;
}

.time-box {
    display: flex;
    gap: 5px;
    align-items: center;
}

.picker-container {
    display: flex;
    gap: 10px;
    position: absolute;
    top: calc(100% + 6px);
    left: -3px;
    background: #fff;
    border: 1px solid #ccc;
    display: none;
    z-index: 1000;
    padding: 10px;
    scrollbar-width: none;
    width: 100px;
}

#project_details ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
#project_details tr td {
  width: 50%;
}
.tb_responsive {
  overflow: auto;
}
.day-column.anzhl_mb {
  display: none;
}

.project-filters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.project-filters label {
  display: block;
  font-size: 14px;
  color: #000;
  margin-bottom: 5px;
}
.project-filters input, .project-filters select {
  padding: 10px;
  border: 1px solid #d2cacaa1;
  background: transparent;
  border-radius: 5px;
  margin-bottom: 20px;
  width: 100%;
}

.work_overview_summary {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.work_overview_summary p {
  border: 1px solid #d2cacaa1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.work_overview_summary p span {
  font-size: 20px;
}
.work_overview_summary p strong {
  font-size: 16px;
}
table.project-hours-table {margin-top: 20px;}

.p_action {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  flex-direction: column;
}
.delete_a_project {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  cursor: pointer;
  color: red;
}
.mobile_hamburger{
  display: none;
}
.work_container *{
  box-sizing: border-box;
}

/* Priority flag dot */
.priority-flag {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
}
.priority-high    { background: #EF4444; }  /* High priority – Red */
.priority-medium  { background: #F59E0B; }  /* Medium priority – Orange/Amber */
.priority-low     { background: #22C55E; }  /* Low priority – Green */

/* Task list styles */
.task-list {
  list-style: none;
  margin: 10px 0;
  padding: 0;
}
.task-item {
  margin: 4px 0;
}
.task-item label {
  cursor: pointer;
}
/* Completed task style */
.task-done {
  text-decoration: line-through;
  color: #6b7280; /* Grey out completed tasks */
}

/* Status label colors */
.status-todo { color: #EF4444; }      /* Red for 0% (To Do) */
.status-inprogress { color: #FB923C; }/* Orange for 1–70% (In Progress) */
.status-review { color: #FDE047; }    /* Yellow for 71–99% (Review) */
.status-done { color: #22C55E; }      /* Green for 100% (Done) */

/* Layout */
.ps-overview {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: start;
}
.ps-legend {
  background: #e5e7eb; /* light grey */
  padding: 16px;
  border-radius: 12px;
}
.ps-legend ul { list-style: none; margin: 8px 0 0; padding: 0; }
.ps-legend li { display: flex; align-items: center; gap: 10px; margin: 8px 0; }

.legend-swatch {
  width: 18px; height: 18px; border-radius: 4px; display: inline-block;
  box-shadow: 0 2px 0 rgba(0,0,0,.15);
}
.legend-swatch.prio-expedite    { background:#EF4444; } /* red */
.legend-swatch.prio-normal      { background:#F59E0B; } /* orange */
.legend-swatch.prio-notcritical { background:#22C55E; } /* green */
.legend-swatch.prio-low         { background:#60A5FA; } /* blue */

/* Board */
.ps-board {
    display: flex;
  gap: 15px;
}
.ps-col {
    background: #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  flex: 0 0 calc(33.33% - 10px);
  max-width: calc(33.33% - 10px);
}
.ps-col > header {
  font-weight: 600;
  padding: 6px 8px 10px;
  border-bottom: 1px solid #d1d5db;
  display: flex; justify-content: space-between; align-items: center;
}
.ps-count { font-weight: 500; font-size: 12px; color:#6b7280; }

.ps-stack { display: flex; gap: 10px; padding: 10px 0px; flex-direction: column; }

/* Cards (color = priority) */
.ps-card {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: #111827; text-decoration: none !important; font-weight: 600;
  box-shadow: 0 2px 0 rgba(0,0,0,.15);
  gap: 5px;
  flex-direction: column;
}
.ps-card__name {
    overflow: hidden;
  font-size: 14px;
  line-height: 1.4;
}
.ps-card__pct { font-weight: 700; opacity:.9; }

/* Priority fills */
.ps-card.prio-expedite    { background:#EF4444; color:#fff; }
.ps-card.prio-normal      { background:#F59E0B; color:#111; }
.ps-card.prio-notcritical { background:#22C55E; color:#0a2; }
.ps-card.prio-low         { background:#60A5FA; color:#0b235a; }

/* Responsive */
@media (max-width: 960px){
  .ps-overview { grid-template-columns: 1fr; }
  .ps-legend { order: 2; }
  .ps-board  { order: 1; }
}
.ps-progress{ position:relative; background:#e5e7eb; border-radius:8px; height:12px; overflow:hidden; display:inline-block; min-width:140px; vertical-align:middle; }
.ps-progress__bar{ height:100%; transition:width .25s ease; }
.ps-progress__label{ margin-left:8px; font-weight:600; vertical-align:middle; }
.ps-progress__meta{ display:block; margin-top:4px; color:#000;   text-align: left;}

.ps-status{   padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-block;
  font-size: 14px;
  line-height: 1;}

/* Colors */
.ps-blue{   background:#3B82F6; color:#0b235a; }
.ps-yellow{ background:#FDE047; color:#7a5e00; }
.ps-orange{ background:#FB923C; color:#5f2b00; }
.ps-green{  background:#22C55E; color:#063; }
/* === Modal Container === */
.ps-modal {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}

/* Dark semi-transparent background */
.ps-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(3px);
    cursor: pointer;
}

/* === Modal Inner Content === */
.ps-modal-inner {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 30px 35px;
    max-width: 800px;
    width: 100%;
    z-index: 100000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: psModalFadeIn 0.25s ease;
}

/* Title */
#ps-notes-modal-title {
    margin: 0 0 20px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

/* Close Button */
.ps-modal-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 26px;
    font-weight: bold;
    color: #444;
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.2s ease;
}
.ps-modal-close:hover {
    color: #000;
}

/* Form Fields */
.ps-field {
    margin-bottom: 20px;
}

.ps-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.ps-field textarea,
.ps-field input[type="file"] {
    width: 100%;
    font-size: 15px;
}

/* Textarea styling */
.ps-field textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.2s ease;
}
.ps-field textarea:focus {
    border-color: #0073aa;
    outline: none;
}

/* Save Button */
.ps-btn-save-note {
    display: inline-block;
    background: #0073aa;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.2s ease;
}
.ps-btn-save-note:hover {
    background: #005f8c;
}

/* Modal fade-in animation */
@keyframes psModalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.ps-project-notes-table-responsive {
    margin-top: 20px;
}

.ps-project-notes-btn {
    margin-bottom: 20px;
}
.ps-project-notes-btn.work_btn {
    display: inline-flex;
}
img.ps-note-thumb {
    width: 40px;
    height: 40px;
    object-fit: cover;
    display: block;
}

.ps-note-footer a {
    display: block;
}

.ps-note-edit-btn.ps-note-edit-link, .ps-note-delete-link{
    text-decoration: underline;
    cursor: pointer;
}
.ps-note-delete-link{
  color: red;
}
.ps-project-notes-list {
    margin: 15px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ps-note-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
}

.ps-note-meta {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 4px;
}

.ps-note-user {
    font-weight: 600;
}

.ps-note-text {
    color: #111827;
    margin-bottom: 6px;
}

.ps-note-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    justify-content: space-between;
}
.ps_note_images, .ps_note_action{
  display: flex;
  gap: 6px;
}
.ps-note-thumb {
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
}

.ps-note-edit-link {
    background: none;
    border: none;
    padding: 0;
    color: #0073aa;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
}
.ps-note-edit-link:hover {
    color: #005f8c;
}
.ps-note-image-wrapper {
    position: relative;
    display: inline-block;
}

.ps-note-thumb {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    object-fit: cover;
}

.ps-note-image-delete {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ef4444;
    color: #fff;
    width: 16px;
    height: 16px;
    font-size: 12px;
    border-radius: 50%;
    line-height: 12px;
    text-align: center;
    cursor: pointer;
    border: 1px solid #fff;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}

.ps-note-image-delete:hover {
    background: #dc2626;
}
span.proj-progress {
    margin-left: 5px;
}
/* Responsive adjustments */
@media (max-width: 600px) {
    .ps-modal-inner {
        padding: 20px;
    }
    #ps-notes-modal-title {
        font-size: 20px;
    }
}


@media only screen and (max-width: 767px){

 
  .work_content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tb_responsive {
    overflow: auto;
  }

  #add-project-form {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #existing-projects {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .manage_project_row {
    flex-wrap: wrap;
  }
  #existing-projects ul li span {
    font-size: 13px;
  }
  .mana_hr, .em_request{
    overflow: auto;
  }
  .work_content table tr th, .work_content table tr td {
    font-size: 13px;
  }
  .day-column::before {
      content: var(--date);
      display: block;
      font-weight: bold;
      color: #333; /* Adjust as needed */
      bottom: calc(100% + 5px);
      position: absolute;
  }

  .time-logging-row {
    flex-wrap: wrap;
    gap: 10px;
  }
  .day-column {
    margin-top: 10px;
    position: relative;
    max-width: 84px;
  }
  .project-column {
    margin-top: 10px;
  }
  .time-logging-header {
        display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .time-logging-header .project-column {
    display: none;
  }
  .time-logging-header .total-column {
    display: none;
  }
  .time-logging-row {
    padding-bottom: 10px;
    border-bottom: 1px solid #d2cacaa1;
    margin-bottom: 10px;
  }
  .hours_action {
    flex-wrap: wrap;
  }

  .time-logging-row {
    gap: 20px 10px;
  }

  .total-column::before {
      content: var(--date);
      display: block;
      font-weight: bold;
      color: #333; /* Adjust as needed */
      bottom: calc(100% + 5px);
      position: absolute;
  }

  .total-column {
    position: relative;
  }


  .work_container {
    position: fixed;
    bottom: 0px;
    left: 0px;
    z-index: 99999;
    padding: 0px;
  }
  
  .work_content {
    display: block;
    position: absolute;
    bottom: 42px;
    background: #fff;
    padding: 20px;
    box-shadow: 0px -10px 10px rgba(0,0,0,.1);
        overflow: auto;
    max-height: calc(100vh - 42px);
        width: 100%;

  }
 
  
  #existing-projects ul li {
    flex-wrap: wrap;
  }
  #existing-projects ul li span {
    display: flex;
    gap: 5px;
    align-items: center;
  }
  #existing-projects ul li span:nth-child(2) {
    flex: 0 0 calc(100% - 50px);
    max-width: calc(100% - 50px);
  }

  .times_container {
    padding-right: 0px;
  }
  .total_ex {
    display: none;
  }
  .day-column.anzhl_mb {
    display: flex;
    border: none;
        margin-top: 33px;
  }
  .total-column {
    max-width: 64px;
    padding: 5px;
    min-height: 27px;
    margin-top: 10px;
  }
  .day-column.anzhl_mb .total_ex {
    position: static;
    display: block;
  }
  .project-column {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .time-logging-row .day-column {
    flex: 0 0 calc(33.33% - 6.66px);
    max-width: calc(33.33% - 6.66px);
  }
  .time-logging-header .day-column {
    margin-top: 0px;
    flex: 0 0 calc(33.33% - 6.66px);
    max-width: calc(33.33% - 6.66px);
  }
  .day-column.anzhl_mb .total_ex {
    margin-top: 15px;
  }
  .day-column.anzhl_mb::before {
    top: 0px;
  }

  .mobile_hamburger{
    display: flex;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background-color: #007bff;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    transition: background-color 0.2s;
  }
  /* Hamburger-Balken */
   .mobile_hamburger .bar {
      position: absolute;
      width: 28px;
      height: 3px;
      background-color: #fff;
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .mobile_hamburger .bar.top    { transform: translateY(-8px); }
    .mobile_hamburger .bar.middle { transform: translateY(0);     }
    .mobile_hamburger .bar.bottom { transform: translateY(8px);   }
    /* Icon-Animation: zum Kreuz */
      .mobile_hamburger.active .bar.top {
        transform: rotate(45deg);
      }
      .mobile_hamburger.active .bar.middle {
        opacity: 0;
      }
      .mobile_hamburger.active .bar.bottom {
        transform: rotate(-45deg);
      }

    .work_nav {
      display: flex;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      align-items: center;
      justify-content: center;
      z-index: 1000;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.3s;
      flex: 0 0 100%;
      max-width: 100%;
    }
    .work_nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      text-align: center;
    }
     .work_nav ul li a {
      color: #fff;
      text-decoration: none;
      font-size: 1.2rem;
      font-weight: 500;
      padding: 5px 15px;
    }
     .work_nav.open {
      visibility: visible;
      opacity: 1;
    }
    .select2-container {
      z-index: 99999;
    }
    
    .ps-board {
      flex-wrap: wrap;
    }
    .ps-col {
      flex: 0 0 100%;
      max-width: 100%;
    }

}