@charset "UTF-8";
/*
Theme Name: TEST SITE
Theme URI: 
Author: Custom Virtual Solutions
Author URI: https://customvs.com/
Description: A theme for WordPress 5.
Requires at least: WordPress 4.9.6
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wp5default
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 with others.

TEST SITE is based on Underscores https://underscores.me/, (C) 2012-2018 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/
*/


/*###################################
# General Styles
###################################*/
html {font-size: 16px; /* 1em */ overflow: auto; line-height: 1.15; -webkit-text-size-adjust: 100%;}
body {margin: 0 auto; width: 100%; overflow: hidden;}
a, a:visited {color: inherit; text-decoration: none; -webkit-transition: all .5s ease; text-decoration: none !important;}
a, img {-webkit-transition: all ease 0.5s;-o-transition: all ease 0.5s;transition: all ease 0.5s;}
a:focus {outline: none!important;}
input:not([type="checkbox"]):not([type="radio"]), select {height: 42px;}
h1, h2, h3, h4, h5, h6, p, li, ul, ol {margin: 0;}

/*###################################
## Layouts
###################################*/

/*###################################
## Header
###################################*/

/*###################################
## Content
###################################*/

/*###################################
## Footer
###################################*/

/*###################################
## Breadcrumbs
###################################*/
.custom-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
    font-size: 14px;
    gap: 5px;
    align-items: center;
    position: relative;
    z-index: 100;
}

.breadcrumb-item {
    position: relative;
}

.breadcrumb-separator {
    color: #666;
}

.breadcrumb-item a {
    color: #0073aa;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.breadcrumb-current {
    font-weight: bold;
    color: #000;
}

/* Dropdown styles */
.has-dropdown > span {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    gap: 4px;
    position: relative;
}

.dropdown-caret {
    font-size: 10px;
    color: #666;
    transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-caret {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #ccc;
    min-width: 180px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 999;
}

.dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-menu li {
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    color: #0073aa;
    text-decoration: none;
    display: block;
}

.dropdown-menu li:hover {
    background-color: #f0f0f0;
}

/* Show on hover */
.has-dropdown:hover .dropdown-menu {
    display: block;
}

/*###################################
## Responsive
###################################*/