/*
Theme Name: gktnotes
Theme URI: https://example.com/gktnotes
Author: Your Name
Author URI: https://example.com
Description: A simple WooCommerce-compatible WordPress theme using Bootstrap 5.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gktnotes
Tags: bootstrap, ecommerce, woocommerce
*/
/* Custom background for navbar */
.bg-my {
    background-color: #3366ff; /* Bootstrap-like blue */
}

/* Ensure nav items are horizontal and centered */
/* Make navbar-container flexible & responsive */
.navbar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem;
}

/* Navbar scroll wrapper */
.navbar-nav {
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 0;
    margin: 0;
    list-style: none;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
}

.navbar-nav::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}


/* Each nav item */
.navbar-nav .nav-item {
    margin: 0 15px;
}

/* Nav links */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s ease;
    text-decoration: none;
}

/* Hover and active state */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.current-menu-item .nav-link {
    color: #ffcc00; /* Yellow highlight */
    font-weight: 700;
}

/* Dropdown menu (optional if using dropdowns) */
.dropdown-menu {
    background-color: #1c1c1c;
    border: none;
}

.dropdown-menu .dropdown-item {
    color: #fff;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #444;
    color: #ffcc00;
}


/* Sidebar container */
.widget-area {
    padding: 1rem;
    background-color: #f8f9fa; /* Bootstrap light gray */
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
}

/* Each widget block */
.widget {
    margin-bottom: 2rem;
}

/* Widget titles */
.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0d6efd; /* Bootstrap primary blue */
    color: #212529;
}

/* Links inside widgets */
.widget a {
    color: #0d6efd;
    text-decoration: none;
}

.widget a:hover {
    text-decoration: underline;
}

/* List-style widgets (e.g., categories) */
.widget ul {
    padding-left: 1rem;
    margin-bottom: 0;
}

.widget ul li {
    margin-bottom: 0.5rem;
}

/* Search widget */
.widget input[type="search"],
.widget input[type="text"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

/* Button (if any in widgets) */
.widget input[type="submit"],
.widget button {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.5rem;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
}

.widget input[type="submit"]:hover,
.widget button:hover {
    background-color: #0b5ed7;
}
