/*
 * Hospital theme override - template.
 *
 * Copy this file to theme-override.css during deployment and edit the copy.
 * theme-override.css is ignored by git, so each hospital keeps its own colors
 * without conflicting on git pull.
 *
 * It is loaded after the main theme CSS, so a deployment can set colors,
 * spacing, and branding tweaks here without changing the core theme
 * stylesheets.
 */
:root {
    --custom-color: #30398d;
    --custom-bg-color: #d8d0b2;
    --custom-white: white;
}

#navigation ul.menu>li,
#navigation .menu>ul>li {
    color: var(--custom-color);
     padding: 0px 10px;
}
#navigation .menu li a {
  color: var(--custom-color);
}

#navigation ul.menu>li:hover,
#navigation .menu>ul>li:hover {
    background-color: var(--custom-bg-color);
    padding: 0px 10px;
}

.new-bg-style-item-2022-bt {
    background-color: var(--custom-color);
}

.bestseller_banner {
    background: var(--custom-color);
    color: var(--custom-white);
    border-radius: 20px;
    padding: 14px 0px 10px 100px;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    border-bottom: 3px solid var(--custom-color);
}

#footer_content h4 {
    font-size: 1em;
    font-weight: 600;
    color: var(--custom-color);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

#footer_content ul>li>a {
    font-size: 1em;
    color: var(--custom-color);
    transition: all 0.6s;
}

#footer_content p {
    color: var(--custom-color);
}
