.wp-admin div[data-title="Degree Levels Filter"] .width-25 {
    /* Default Genesis Editor Styles */  
    flex-basis: 20% !important;
    padding-right: 0 !important;
}

.degree-block {
    background-color: var(--bg-color-white);
}

.degree-block_inner {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
}

.degree-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.degree-buttons button {
    background-color: var(--primary-color);
    color: var(--text-color-white);
    border: none;
    border-radius: 30px;
    padding: 18px 40px;
    width: 248px;
    font-size: 22px;
    text-align: left;
}

.degree-buttons button:hover,
.degree-buttons button.active {
    background-color: var(--primary-color-hover);
}

.program-list {
    padding-left: 80px;
}

.program-list > div {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-list > div:not(:first-of-type) {
    display: none;
}

.program-list > div > p > a {
    display: inline-block;
    color: var(--primary-color);
    font-size: 30px;
    text-decoration: none;
    position: relative;
    padding: 12px 18px;
    margin-bottom: 25px;
}

.program-list > div > p > a:last-of-type {
    margin-bottom: 0;
}

.mobile-degree-select {
    display: none; /* Hide on desktop */
    
}

@media only screen and (max-width:999px) {
    .degree-block {
        max-width: 100%;
    }

    .degree-block_inner {
        flex-direction: column;
        max-width: 80%;
        position: relative;
    }

    .degree-block_inner::after {
        content: "";
        display: inline-block;
        position: absolute;
        right: 18px;
        top: 33px;
        width: 21px;
        height: 18px;
        background: url(/wp-content/themes/KevinMinimal/blocks/images/dropdown-arrow.webp) no-repeat;
        background-size: contain;
        pointer-events: none;
    }

    .mobile-degree-select {
        display: block;
        height: 80px;
        font-size: 22px;
        background-color: var(--primary-color);
        color: var(--text-color-white);
        padding: 25px 18px;
        margin-bottom: 25px;
        appearance: none;
    }

    .degree-buttons {
        display: none;
    }

    .program-list {
        padding: 0;
    }

    .program-list > div > p > a {
        font-size: 22px;
        line-height: 28px;
    }
}

@media only screen and (min-width:1000px) {
    .degree-block {
        max-width: 100%;
    }
    
    .program-list > div > p > a:hover {
        background-color: var(--primary-color-hover);
        color: var(--text-color-white);
    }
}

@media only screen and (min-width:1000px) and (max-width:1199px) {   
    .degree-block_inner {
        max-width: 94%;
        margin: 0 auto;
    }
    
    .program-list > div > p > a {
        font-size: 24px;
    }
}