/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

.subpage-menu ul.horizontal-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.subpage-menu ul.horizontal-menu li {
    margin: 0;
    padding: 0;
}

.subpage-menu ul.horizontal-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #FFB23E; /* Menu text color */
}

.subpage-menu ul.horizontal-menu a:hover {
    color: #fff; /* Hover color */
}
.subpage-menu ul.horizontal-menu a:active {
   color: #fff; /* Active color */
   border:1px solid #fff;
}
/* Hide the dropdown by default */
.subpage-menu select.mobile-menu {
    display: none;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    color: #FFB23E; /* Menu text color */
    background-color: #091D41;
    border: 1px solid #ddd;
}

.subpage-menu select.mobile-menu option {
    color: #FFB23E; /* Option text color */
}

/* Show the dropdown on mobile view */
@media (max-width: 768px) {
    .subpage-menu ul.horizontal-menu {
        display: none;
    }

    .subpage-menu select.mobile-menu {
        display: block;
    }
}