tr {
    height:65px;
}
td {
    position: relative;
    overflow: hidden; /* Prevents overflow */
    border:none !important;
}

td:nth-child(2):before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--img-url), linear-gradient(to right, rgba(23,26,35, 0) 0%, rgba(23,26,35, 1) 100%);; /* Fade effect */;
    background-size: 100% 100px;
    background-blend-mode: overlay; /* Blend the gradient with the image */
    background-size: cover; /* Ensure the image covers the entire cell */
    background-position: center; /* Center the background image */
    opacity: 0.4; /* Adjust opacity here */
    z-index: 1; /* Ensures the image is below the content */
    /* box-shadow: 0 0 5px 5px #171a23 inset; */
}

tr:nth-child(odd) td:nth-child(2)::before{
    box-shadow: 0 0 6px 6px #171a23 inset !important;
}

tr:nth-child(even) td:nth-child(2)::before{
    box-shadow: 0 0 6px 6px #12161f inset !important;
}

td:nth-child(1) {
    width:50px;
}

td:nth-child(2) {
    width:500px;
    color:white;
    z-index:3;
}

td > * {
    position: relative; /* Ensures content is above the image */
    z-index: 2;
}

.text-content {
    text-shadow: 1px 1px 1px black;
}

#select-week {
    width:30% !important;
}

[role=group] {
    box-shadow:none;
}