.passing > td{
    background-color: #282e39 !important;
}

td:nth-child(2), th:nth-child(2) {
    text-align: left !important;
    width:20% !important;
}

section {
    display:flex;
    flex-direction: column;
    gap: 1em;
}

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(158, 158, 158, 0.1) 0%, rgba(158, 158, 158, 0.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 td:nth-child(2)::before{
    box-shadow: 0 0 6px 6px #12161f inset !important;
}

/* tr:nth-child(even) td:nth-child(2)::before{
    box-shadow: 0 0 6px 6px #12161f inset !important;
} */

.passing td:nth-child(2)::before {
    box-shadow: 0 0 6px 6px #282e39 inset !important;
}

td:nth-child(1) {
    width:50px;
}

td:nth-child(2) {
    color:white;
    z-index:3;
    text-align: center !important;
    font-weight: bold;
    width:25% !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

td a {
    text-decoration: none;
    color:rgb(235, 235, 235);
}

td a:hover {
    color:white; 
}

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;
}