/* Style the dropdown button */
.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    width: 150px;
    height: 50px;
}

/* Style the dropdown container */
.dropdown {
    position: absolute;
    top: -165px;
    left: 40px;
    right: auto;
    display: inline-block;
}

/* Style the dropdown content */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    max-height: 400px;
    width: 150px;
    overflow-y: auto;
    animation-name: bounceIn;
    animation-duration: 0.4s;
}

/* Define the bounce animation */
@keyframes bounceIn {
    0% {
        transform: translateY(-10%);
        opacity: 0;
    }

    50% {
        transform: translateY(1%);
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Style the links inside the dropdown */
.dropdown-content a {
    color: #dad420;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font: Microsoft JhengHei UI
}

    /* Change color of dropdown links on hover */
    .dropdown-content a:hover {
        background-color: #000000;
    }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}/* Dropdown menu Date alignment */
.date-container {
    position: relative;
    width: 100%;
    right: auto;
    left: 40px;
    top: -190px;
}
