.dropdown {
    position: relative;
    display: inline-block;
}

.mediumPlayBtn {
    height: 50px;
    font-weight: 1000;
    min-width: 200px;
    font-size: 125%;
    border-radius: 5px;
    background-color: #ff7300;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    border: none;
    width: fit-content;
    color: white;
    transition: all 0.3s ease;
    cursor: default;
    padding-left: 10%;
}

.arrow-down {
    font-size: 90%;
    padding-right: 3%;
}

.dropdown:hover .mediumPlayBtn {
    font-size: 140%;
    box-shadow: 0px 15px 20px #ff730097;
    transform: translateY(-3px);
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ff7300;
    min-width: 250px;
    border-radius: 5px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #e46200;
    color: white;
}
