table th, 
table td {
  border: none;
}

#actualDate{
    overflow: hidden;
}

.hamburger-btn {
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1100;
    width: 45px;
    height: 45px;
    background-color: #BD2727;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

.hamburger-btn:hover {
    background-color: #a61f1f;
}

.sidebar {
    transition: transform 0.3s ease-in-out;
    transform: translateX(0);
    z-index: 1050;
    position: relative; 
}

.sidebar-bottom {
    position: absolute;
    bottom: 20px; 
    left: 0;
    width: 100%;
}

#ydw-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    color:red;
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 300px;
        height: 100vh;
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }
}
