/*
Theme Name: Quantech Child
Author: Modina Theme
Author URI: https://themeforest.net/user/modinatheme/
Theme URI: https://modinatheme.com/quantech/
Description: IT Solutions and Technology WordPress Theme
Template: quantech
Version: 1.1.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: quantech
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

quantech is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* Import parent theme styles */
@import url("../quantech/style.css");

/*
 Theme Name:   Quantech Child
 ... (all the header info from above) ...
*/

/* --- Custom Service Sidebar Styling --- */

/* Style the entire widget container */
.sidebar .widget_nav_menu {
    background-color: #F7F5FC; /* Light lavender background */
    border: 1px solid #EAE5FF;   /* Light purple border */
    padding: 30px 25px;
    border-radius: 8px;
}

/* Style the widget title */
.sidebar .widget_nav_menu .widget-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
}

/* Remove default list styling */
.sidebar .widget_nav_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Style each individual menu item (the button container) */
.sidebar .widget_nav_menu li {
    margin-bottom: 15px; /* Space between buttons */
}

/* Last button should not have space at the bottom */
.sidebar .widget_nav_menu li:last-child {
    margin-bottom: 0;
}

/* Style the link to look like a button */
.sidebar .widget_nav_menu li a {
    display: block;
    background-color: #D4FE68; /* Bright lime green */
    color: #111;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Style the active/current page link */
.sidebar .widget_nav_menu .current-menu-item a {
    background-color: #0A1727; /* Dark background for active link */
    color: #FFFFFF;
}

/* Add a hover effect for the buttons */
.sidebar .widget_nav_menu li a:hover {
    background-color: #222;
    color: #fff;
}

