body {
    /* Remove the background-color property from here */
}


/* tues 13/2 version 2 --- this is the general aviation questions page, solid blue, #454B1B */
.b1-pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.b1-front {
    display: block;
    position: relative;
    width: 150px; /* Adjust width for desired button width */
    height: 18px; /* Adjust height for desired button height */
    padding: 12px 27px;
    border-radius: 12px 12px 6px 6px; /* Curved at the top, pointy in the middle */
    font-size: 1.1rem;
    color: black;
    background: linear-gradient(to bottom, #b8860b 0%, #ffff00 50%, #b8860b 100%); /* its dark yellow at the top, lighter yellow in the middel and dark yellow at the bottom - yellow gradient */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), /* Top shadow */
    0 5px 10px rgba(0, 0, 0, 0.15), /* Bottom shadow */
    inset 0 3px 6px rgba(255, 255, 255, 0.7), /* Top highlight */
    inset 0 -3px 6px rgba(0, 0, 0, 0.6); /* Bottom shadow */


    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.b1-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: #b8860b /* Dark yellow color */
}

.b1-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 109%; /* Adjust the shadow length */
    height: 117%; /* Adjust the shadow height direction */
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.4); /* Adjust the shadow color if needed */
    will-change: transform;
    transform: translateY(3px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.b1-pushable:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

    .b1-pushable:hover .b1-front {
        transform: translateY(-6px);
        transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
    }

.b1-pushable:active .b1-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.b1-pushable:hover .b1-shadow {
    transform: translateY(10px);
    transition: transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.b1-pushable:active .b1-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.b1-pushable:focus:not(:focus-visible) {
    outline: none;
}

@media (min-width: 768px) {
    .button-1-front {
        font-size: 1.25rem;
        padding: 12px 42px;
    }
}

/* Style the dropdown button ------------------------------------------------------here */
.dropbtn {
    display: inline-block;
    background-color: #00000000;
    color: white; /* everything below in this section is for the top buttons- this line is colour text of the top buttons */
    padding: 9px 38px;
    font-size: 17px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    margin: 5px; /* Adjust spacing between buttons */
}

    /* Dropdown button on hover & focus */
    .dropbtn:hover, .dropbtn:focus {
        background-color: #edce02;
    }

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) - Dropdown content this section changes the drop down look */
.dropdown-content {
    display: none;
    position: absolute;
    background: linear-gradient(to bottom, #FFA500 0%, #FFD700 50%, #FFA500 60%); /* Neon orange gradient */

    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        font-weight: bold; /* Make the text bold */
        font-size: 16px; /* Optionally increase the font size */
        background: linear-gradient(to bottom, #FFA500 0%, #FFD700 50%, #FFA500 60%); /* Neon orange gradient */
        margin-bottom: 5px; /* Adjust the margin as needed for space below each button */
    }

        /* Change color of dropdown links on hover */
        .dropdown-content a:hover {
            background: linear-gradient(to bottom, #00BFFF 0%, #87CEEB 50%, #00BFFF 60%); /* Lighter neon blue gradient */
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    border-radius: 0; /* Remove border-radius */
    background: none; /* Remove background */
    box-shadow: none; /* Remove box-shadow */
}

/* Change the color of the top button box whne the dropdown content is shown */
.dropdown:hover .dropbtn {
    background-color: #007FFF;
}

/* --------------------below is the go back button--------------------------------------------- */

.backneon-button-container {
    text-align: center; /* Center align the content */
}

.backneon-button {
    display: inline-block;
    width: 170px; /* Set the width of the button */
    height: 25px; /* Set the height of the button */
    background-color: #00ff00; /* Neon green */
    color: black;
    text-align: center;
    text-decoration: none;
    font-size: 20px;
    border: 1px solid #000; /* Black thin border */
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px #00ff00; /* Neon green glow */
    margin-left: -15px; /* Adjust the left margin as needed */
}

    .backneon-button:hover {
        background-color: #33ff33; /* Lighter neon green */
        box-shadow: 0 0 20px #33ff33; /* Lighter neon green glow */
    }