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;
    padding: 12px 27px;
    width: 195px; /* Adjust width for desired button width */
    height: 30px; /* Adjust height for desired button height */
    border-radius: 12px;
    font-size: 1.0rem;
    color: white;
    background: linear-gradient(to bottom, #330000 0%, #663300 40%, #994d00 60%, #663300 100%); /* Neon dark dark brown 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: #9b111e; /* Red ruby color -leave the edge of the yt page buttons 
} */


.b1-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 103%;
    height: 104%;
    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);
}





@media (min-width: 768px) {
    .b1-front {
        font-size: 1.00rem;
        padding: 8px 33px;
    }
}

.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;
}

.button-container {
    display: grid;
    grid-template-columns: repeat(1, auto); /* Two columns layout */
    column-gap: 10px; /* Adjust the gap between columns */
    justify-content: center; /* Center items horizontally */
}

.b1-pushable {
    width: 100%; /* Make buttons fill the available space */
    max-width: 250px; /* Set a maximum width for the buttons */
    margin-bottom: 15px; /* Adjust spacing between buttons if needed */
}


/* Add styles for the media  ------------------------------------------------------------------     button */
.media-button {
    font-size: 1em;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: yellow; /* Black color */
    border: #000000 4px solid; /* Black border */
    padding: 0.25em 2em;
    border-radius: 10px; /* Adjust this value for the roundness of corners */
    text-shadow: 0 0 0.125em rgba(255, 255, 255, 0.55), 0 0 0.5em currentColor;
    box-shadow: inset 0 0 0.5em 0 #000000, 0 0 0.5em 0 #000000;
    position: relative;
}

    .media-button::before {
        pointer-events: none;
        content: "";
        position: absolute;
        background: #000000; /* Black color */
        top: 120%;
        left: 0;
        width: 100%;
        height: 100%;
        transform: perspective(1.2em) rotateX(40deg) scale(1.5, 0.5);
        filter: blur(1.15em);
        opacity: 0.7;
        transition: transform 0.5s linear;
    }

    .media-button::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        box-shadow: 0 0 4em 0.6em yellow, 0 0 1em 0.2em #FFFF00; /* Black and yellow shadow */
        opacity: 0;
        background: yellow; /* Black color */
        z-index: -1;
        transition: opacity 0.5s linear;
    }

    .media-button:hover,
    .media-button:focus {
        color: #FFFF00; /* Yellow color */
        text-shadow: none;
    }

        .media-button:hover::before,
        .media-button:focus::before {
            opacity: 0.8;
            transform: perspective(1em) rotateX(40deg) scale(1.5, 0.6);
            transition: transform 0.5s linear;
        }

        .media-button:hover::after,
        .media-button:focus::after {
            opacity: 1;
        }

        .media-button:hover .text,
        .media-button:focus .text {
            color: green; /* Green color */
        }

/* 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 */
    }


