/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* MAIN CONTAINER */
.gantt-chart {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: none;
    outline: 1px solid #ccc;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0;
    margin: 0;
}

/* HEADER */
.header-wk {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    background-color: #edf1f8;
}

/* ROWS CONTAINER */
.rows-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* ROWS */
.row {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    position: relative;
}

/* HEADER CELLS + TASK CELLS */
.day-of-week,
.task {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    font-weight: bold;
    position: relative;
    padding: 0;
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* REMOVE ALL BORDERS IN ROWS */
.task,
.row,
.rows-container {
    border: none !important;
}

/* REMOVE HEADER CELL BORDERS TOO */
.day-of-week {
    border: none !important;
      padding: 4px 0;             /* slimmer labels */
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  color: #555;
  user-select: none;
}

/* ALTERNATING COLUMN COLORS */
 .day-of-week:nth-child(odd), 
.task:nth-child(odd) {
    background-color: #ffffff; 
}

kill .day-of-week:nth-child(even), 
.task:nth-child(even) {
    
    background-color:#f7f9fc;/*#edf1f8 */
}

/* TASK HEIGHT */
.task {
    height: 40px;
}

/* HEADER LABELS */
.day-label {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

/* WEEKDAY TEXT */
.weekday {
    font-weight: bold;
    font-size: 12px;
    color: #555;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.daynum {
    font-size: 0.85rem;
    margin-top: 2px;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* WEEKDAY PILL */
.weekday-pill {
    display: inline-block;
    padding: 4px 10px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    user-select: none;
    text-align: center;
    white-space: nowrap;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* EVENT BARS */
.event-bar-wk {
    position: absolute;
    top: 10%;
    height: 90%;
    /*background-color: #c79b21;
    outline: 3px solid #c79b21;*/
    
    
    box-sizing: border-box;
background-color: #fff;

    border-radius: 4px;
    color: rgb(38, 37, 37);
    font-size: 14px;
    padding-left: 0px;
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* MOBILE: condensed but same grid */
@media (max-width: 768px) {
    .task {
        height: 32px;
    }
    .weekday,
    .weekday-pill,
    .event-bar-wk {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .task {
        height: 28px;
    }
    .weekday,
    .weekday-pill,
    .event-bar-wk {
        font-size: 12px;
    }
}

/* ENSURE NO GAPS BETWEEN HEADER AND ROWS */
.header-wk,
.row {
    column-gap: 0;
    margin-left: 0 !important; margin-right: 0 !important;
}
.wk-indicator_Closets{
    border:3px solid green;
}
.wk-indicator_Doors{
    border:3px solid rgb(192, 183, 11);
}
.wk-indicator_Service{
    border:3px solid rgb(128, 0, 0);
}

.num-fill-Closets{
    display:flex;
    margin:0;
    padding:0 4px;   
    background-color: green;
}
.num-fill-Doors{
     display:flex;
     margin:0;
     padding:0 4px;  
    background-color: rgb(192, 183, 11);
}
.num-fill-Service{
     display:flex;
     margin:0;
     padding:0 4px;  
    background-color:  rgb(128, 0, 0);
}
.num-track-identifier{
    font-size: 12px;
    font-weight: 600;
}