/*
Theme Name:     Dashwall Child
Theme URI:      https://tribunehindi.com/
Description:    Child theme for the Dashwall theme
Author:         TribuneHindi Team
Author URI:     https://tribunehindi.com/
Template:       dashwall
Version:        1.0.0
License:        GNU General Public License v2 or later
License URI:    http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    dashwall-child
*/

@import url("../dashwall/style.css");

/* मोबाइल और टैबलेट में हॉरिजॉन्टल मेनू दिखाएं */
@media screen and (max-width: 991px) {
    .mobile-horizontal-menu {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        background: #fff;
        border-top: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
        padding: 5px 0;
    }

    .mobile-horizontal-menu ul.horizontal-menu-items {
        display: inline-flex;
        padding: 0;
        margin: 0;
    }

    .mobile-horizontal-menu ul.horizontal-menu-items li {
        display: inline-block;
        list-style: none;
        margin-right: 5px;
    }

    .mobile-horizontal-menu ul.horizontal-menu-items li a {
        display: block;
        padding: 8px 14px;
        font-size: 14px;
        color: #333;
        text-decoration: none;
        border-radius: 4px;
        background: #f5f5f5;
    }

    .mobile-horizontal-menu ul.horizontal-menu-items li a:hover {
        background-color: #e0e0e0;
    }
}

/* डेस्कटॉप और लैपटॉप में मेनू छिपाएं */
@media screen and (min-width: 992px) {
    .mobile-horizontal-menu {
        display: none;
    }
}
