/*
Theme Name: Caricojm
Theme URI: https://caricojm.com/
Author: Caricojm
Author URI: https://caricojm.com/
Description: A custom WordPress theme named Caricojm
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: caricojm
Tags: custom, responsive, blog
*/

/* ========== COLOR PALETTE VARIABLES ========== */
:root {
    /* Primary */
    --primary-color: #0073AA;
    --primary-hover: #005177;
    --primary-light: #E5F4FF;

    /* Secondary / Accent */
    --accent-color: #FF6B6B;
    --accent-secondary: #FFA500;
    --success-color: #28A745;

    /* Neutrals */
    --white: #FFFFFF;
    --light-gray: #F9F9F9;
    --gray: #DDDDDD;
    --dark-gray: #333333;
    --very-dark-gray: #222222;
}

/* ========== RESET & GLOBAL STYLES ========== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    margin: 0px !important;
    padding: 0px !important;
}

body {
    font-family: 'Montserrat', Arial, sans-serif !important;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

/* ========== HEADINGS ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: var(--very-dark-gray);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.75rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }

/* ========== LINKS ========== */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-hover);
}

/* ========== HEADER ========== */

/* TOP BAR */
.top-bar {
    background-color: var(--primary-color);
    font-size: 14px;
    padding: 12px 0;
}
.top-bar.header {
    margin-bottom: 0px !important;
}
.top-socials {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}
.top-socials a {
    display: flex;
    align-items: center;
}
ul#menu-top-bar li a {
    color: var(--white);
    border-right: 1px solid white;
    padding-right: 10px;
	padding-top: 0px;
	padding-bottom:0px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
}

.top-bar .top-links,
.top-bar .top-right-menu {
    display: flex;
    gap: 15px;
}

.top-bar a {
    color: var(--dark-gray);
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--primary-color);
}

/* MAIN HEADER */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    position: relative;
    z-index: 1000;
}
.top-socials a img {
    width: 40px;
    border-radius: 4px;
}
.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    max-height: 120px;
}
a.insta-link,a.fb-link,a.tik-link {
    position: relative;
    top: 3px;
}
a.sc-bg-img-btn:hover {
    color: white;
}
.logo a {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
}

ul li{
    list-style-type: none;
}

/* Main Navigation */
.main-nav {
    position: relative;
    flex-grow: 1;
    margin-left: 40px;
}

.main-nav .main-menu {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.main-nav .main-menu li {
    position: relative; 
}

.main-nav .main-menu li a {
    display: block;
    padding: 10px 0;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.3s;
    .main-nav .main-menu li a
}

.main-nav .main-menu li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* Submenu */
.main-nav .main-menu li ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--white);
    border: 1px solid var(--gray);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
    padding: 10px 0;
}

.main-nav .main-menu li ul li {
    width: 100%;
}

.main-nav .main-menu li ul li a {
    padding: 10px 20px;
    color: var(--dark-gray);
}

.main-nav .main-menu li ul li a:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    text-decoration: none;
}

/* Show submenu on hover */
.main-nav .main-menu li:hover > ul {
    display: block;
}

/* Font Awesome submenu arrow */
.main-nav .main-menu li.menu-item-has-children > a::after {
    content: "\f078"; /* Font Awesome chevron-down */
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.8em;
}
header.main-header {
    padding-bottom: 10px !important;
    padding-top: 5px !important;
}
/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Drawer */
.mobile-menu-wrapper {
    display: none;
    background-color: var(--white);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 9999;
}

.mobile-menu-wrapper .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-wrapper .mobile-menu li a {
    color: var(--dark-gray);
    font-size: 16px;
}

/* ========== FOOTER ========== */
.site-footer,
footer {
    background-color: var(--very-dark-gray);
    color: var(--white);
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    font-size: 14px;
    width: 100%;
}

/* Footer Top: About & Menus */
.footer-top {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about img.footer-logo {
    max-width: 150px;
    margin-bottom: 20px;
}
.footer-menu h4 {
    color: var(--white);
}
.footer-about p {
    color: #ccc;
    font-size: 14px;
}
.footer-about img {
    height: 120px;
    margin-bottom: 20px;
}
.footer-menu h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

/* Footer Middle: Social + App Buttons */
.footer-middle {
    padding: 30px 0;
    border-top: 1px solid var(--dark-gray);
    border-bottom: 1px solid var(--dark-gray);
}

.footer-middle-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-social a {
    margin-right: 15px;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s ease;
}

.footer-social a:last-child {
    margin-right: 0;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-apps a {
    display: inline-block;
    margin-left: 10px;
}

.footer-apps img {
    max-width: 130px;
    width: 100%;
    height: auto;

}

/* Footer Bottom: Copyright */
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #777;
}

.footer-bottom-links p span {
    margin: 0 5px;
    color: #555;
}

.footer-bottom-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* ========== BUTTONS ========== */
button, .button, input[type="submit"] {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

button:hover, .button:hover, input[type="submit"]:hover {
    background-color: var(--primary-hover);
}

/* ========== SECTIONS ========== */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
}



/* ===== GLOBAL CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 10px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ========== IMAGES ========== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ========== FORMS ========== */
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
}

/* ========== GRID SYSTEM ========== */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.col {
    flex: 1;
    min-width: 250px;
}

/* ========== UTILITY CLASSES ========== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none !important; }

/* ========== ALERTS & MESSAGES ========== */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.alert-success { background-color: var(--success-color); color: var(--white); }
.alert-error { background-color: var(--accent-color); color: var(--white); }
.alert-warning { background-color: var(--accent-secondary); color: var(--white); }
/* Hide all top-bar menu items except Login on mobile/tablet */
@media (max-width: 1024px) { /* Tablets and below */
    #menu-top-bar li {
        display: none; /* hide all menu items */
    }
    #menu-top-bar li#menu-item-51 {
        display: list-item; /* show only Login / Sign Up */
    }
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .top-bar {
        display: none;
    }

    .top-bar .container {
        justify-content: center;
    }

    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 300px;
        background-color: var(--white);
        padding-top: 60px;
        box-shadow: 2px 0 8px rgba(0,0,0,0.2);
        transition: left 0.3s ease;
        z-index: 9999;
        margin-left: 0;
    }

    .main-nav .main-menu {
        flex-direction: column;
        gap: 0;
    }

    .main-nav .main-menu li {
        border-bottom: 1px solid var(--light-gray);
    }

    .main-nav .main-menu li a {
        padding: 15px 20px;
        display: block;
    }
    .footer-middle-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-apps {
        margin-top: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Two columns on tablet */
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    #menu-top-bar li {
        display: none; /* hide all menu items */
    }
    #menu-top-bar li#menu-item-51 {
        display: list-item; /* show only Login / Sign Up */
    }
    .row { flex-direction: column; }

    .header-flex {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .logo {
        margin-bottom: 10px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-about img.footer-logo {
        max-width: 120px;
        margin-bottom: 15px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }
    .footer-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 20px;
    }

}

/**top bar submen css**/
/* ===============================
   TOP BAR MENU
================================ */

.top-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.top-links > li {
    position: relative;
}

.top-links > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    padding: 6px 0;
}

/* ===== Dropdown Arrow ===== */
.top-links li.menu-item-has-children > a::after {
    content: "▾";
    font-size: 11px;
    margin-top: 1px;
    transition: transform 0.25s ease;
}

/* Rotate arrow on hover */
.top-links li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* ===== Submenu ===== */
.top-links ul.sub-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 180px;
    background: #ffffff;
    border-radius: 6px;
    padding: 8px 0;
    list-style: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 9999;
}

/* Show submenu on hover */
.top-links li:hover > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Submenu items */
.top-links ul.sub-menu li a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    color: #222222 !important;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Hover effect */
.top-links ul.sub-menu li a:hover {
    background: #0073aa;
    color: #fff !important;
}
/***Footer ct info style**/
.footer-contact-info {
    margin-top: 20px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 14px;
    color: #ffffff;
}

.footer-contact-info svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
    flex-shrink: 0;
}

.footer-contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact-info a:hover {
    text-decoration: underline;
}
.footer-social {
    display: flex;
}
.footer-contact-info span {
    opacity: 0.6;
    margin: 0 4px;
}
.main-menu a[href*="login"] {
    padding: 8px 20px !important;
    background-color: #0073aa;
	border:1px solid #0073aa;
    color: #fff !important;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.main-menu a[href*="login"]:hover {
    background-color: white;
	color: #0073aa !important;
}

.main-menu a[href*="sign-up"] {
    padding: 8px 20px !important;
    background-color: #0073aa; /* different color for Sign Up */
    color: #fff !important;
    border-radius: 5px;
	border:1px solid #0073aa;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.main-menu a[href*="sign-up"]:hover {
    background-color: white;
	color: #0073aa !important;
}
.lbt-btn.outline{
	background:none !important;
    color:white !important;
}
.lbt-btn.outline:hover{
	 background-color: #0073aa !important;
	color: white !important;
}
.lbt-btn.primary {
 
    border: 1px solid #0073AA;
}
a.lbt-btn.primary:hover {
    background: white !important;
    color: #0073AA !important;
    
}
/**messages**/
/* ===== Messages Wrapper ===== */
section#body-area {
    padding: 0px;
}
.message-users-list {
    background: #ffffff;
    border-radius: 6px;
    
    padding: 20px;
    max-width: 420px;
	width:420px;
   
}
.report-msg-buttons {
    margin: 0px;
}
button.btn.btn-report-spam.msg-spam-button {
    background: #0073aa !important;
    color: white !important;
    border: 1px solid #0073aa !important;
    font-family: 'Montserrat';
}
button#send-homey-message {
    background: #0073aa !important;
    color: white !important;
    border: 1px solid #0073aa !important;
    font-family: 'Montserrat';
    height: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
button#send-homey-message:hover {
    background: #0073aa !important;
    color: white !important;
    border: 1px solid #0073aa !important;
    font-family: 'Montserrat';
    height: 40px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
/* ===== Header ===== */
.msg-user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.msg-user-header .title {
    font-size: 22px;
    font-weight: 700;
    color: #222;
}
button#toggle-archive-msg {
    display: none;
}
.msg-user-header h2 {
    margin-bottom: 0px !important;
}
button#toggle-spam {
    background: #0073aa;
    font-family: 'Montserrat';
    /* padding: 0px 30px; */
    height: 40px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
li.message-user {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

button#toggle-blocked-msg {
    display: none;
}
/* Action buttons */
.msg-action-btns {
    display: flex;
    gap: 8px;
}

.msg-action-btns .btn {
    background: #f1f3f5;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.msg-action-btns .btn:hover {
    background: #0073aa;
    color: #fff;
}

/* ===== Message List ===== */
.message-users-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ===== Single User Item ===== */
.message-user {
    border-bottom: 1px solid #eee;
    padding: 15px 10px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.message-user:last-child {
    border-bottom: none;
}

.message-user:hover {
    background: #f8f9fb;
}

/* ===== User Info ===== */
.message-user-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Left content */
.message-user-content {
    flex: 1;
}

/* User name */
.user-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

/* City (optional) */
.user-name-city {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 6px;
}

/* Last message */
.last-message {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

/* Date */
.last-message-date {
    font-size: 12px;
    color: #999;
}

/* ===== Report / Action Buttons ===== */
.report-msg-buttons {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 10px;
}

.report-msg-buttons .btn {
    background: transparent;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Spam */
.btn-report-spam:hover {
    background: #ffe5e5;
    border-color: #ff4d4f;
    color: #ff4d4f;
}




/* ===== Responsive ===== */
@media (max-width: 576px) {
    .message-users-list {
        max-width: 100%;
    }

    .last-message {
        max-width: 180px;
    }

    .report-msg-buttons {
        display: none; /* hide buttons on mobile */
    }
}
button#toggle-archive-msg {
    display: none;
}

button#toggle-blocked-msg {
    display: none;
}

.msg-user-header h2 {
    margin-bottom: 0px !important;
}

button#toggle-spam {
    background: #0073aa;
    font-family: 'Montserrat';
    /* padding: 0px 30px; */
    height: 40px;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.msg-user-header {
    display: flex;
    align-items: center;
}

li.message-user {
    margin: 0px;
    margin-top: 10px;
    margin-bottom: 10px;
}

button.btn.btn-report-archive.msg-spam-button {}

button.btn.btn-report-archive.msg-spam-button {
    display: none;
}

button.btn.btn-report-block.msg-spam-button {
    display: none;
}

.message-user-info {
    flex-direction: column;
}


/*** Menu CSS ***/
li.menu-item.menu-item-logout {
    background: #0073aa;
    font-family: 'Montserrat';
    height: 46px;
    width: 120px;
    font-size: 18px;
    display: flex;
    align-items: center;
    border: 1px solid #0073aa;
    justify-content: center;
    border-radius: 4px;
}
li.menu-item.menu-item-logout:hover {
    background: transparent !important;
}

li.menu-item.menu-item-logout:hover a {
    color: #0073aa !important;
}
li.widget_text {
    padding-bottom: 0px !important;
}
h4.mega-block-title {
    font-weight: 500 !important;
}
ul.mega-sub-menu {
    padding: 10px !important;
}
h4.mega-block-title:before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
    content: "\f054" !important;
    display: inline-block;
    margin-right: 10px;
    color: #0073aa !important;
    font-size: 16px;
    vertical-align: middle;
}
a.mega-menu-link {
    padding-left: 20px !important;
}
a.mega-menu-link {
    font-weight: 400 !important;
}
li.menu-item.menu-item-logout a {
    color: white;
}
li.menu-item.menu-item-login a {
    color: white;
}

li.menu-item.menu-item-signup {
    background: transparent;
    font-family: 'Montserrat';
    height: 46px;
    width: 120px;
    display: flex;
	font-size:18px;
    align-items: center;
    border: 1px solid #0073aa;
    justify-content: center;
    border-radius: 4px;
}
a.menu-btn.login-btn {
    background: #0073aa;
    font-family: 'Montserrat';
    height: 46px;
    width: 120px;
	font-size:18px;
    display: flex;
    align-items: center;
    border: 1px solid #0073aa;
    justify-content: center;
    border-radius: 4px;
}
li.menu-item.menu-item-login {
    margin-right: 10px;
}
li.menu-item.menu-item-signup:hover {
    background: #0073aa !important;
    color: white;
}
li.menu-item.menu-item-signup:hover a{
	color: white !important;
}
a.menu-btn.login-btn:hover {
    background: transparent !important;
}
li.menu-item.menu-item-login:hover a {
    color: #0073aa !important;
}
h4.mega-block-title {
    font-size: 14px !important;
}
ul.mega-sub-menu {
    background: white !important;
}
a.mega-menu-link {
    background: white !important;
}
.mega-sub-menu a.mega-menu-link {
    font-size: 15px !important;
}
.mega-menu-item {
    padding-bottom: 0px !important;
}
button.btn-primary {
    padding: 12px 30px;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    border: 1px solid #0073aa;
}
button.btn-primary:hover{
	background:white;
   color:var(--primary-color);
}
.signup-form input, .signup-form select, .signup-form textarea{
	margin-bottom:0px !important;
}
button.btn-primary {
    margin-top: 0px;
}
.form-group.remember-me {
    margin-bottom: 0px !important;
}
@media screen and (max-width: 1024px) {

    /* Mega menu links color on mobile */
    #mega-menu-wrap-main-menu #mega-menu-main-menu > li.mega-menu-item > a.mega-menu-link {
        color: black !important;
    }

    /* Mega menu background on mobile */
    #mega-menu-wrap-main-menu .mega-menu-toggle + #mega-menu-main-menu {
        background: white;
        margin-left: 10px;
    }

    /* Login button full width on mobile */
    a.menu-btn.login-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    /* Signup menu item width on mobile */
    li.menu-item.menu-item-signup {
        width: 97%;
    }
}
button.btn-book.book-now-from-modal {
    background: #0073aa !important;
    font-family: 'Montserrat';
    height: 46px;
    width: 120px;
    font-size: 18px;
    display: flex;
    align-items: center;
    border: 1px solid #0073aa !important;
    justify-content: center;
    border-radius: 4px;
}
button.btn-primary {
    border-radius: 4px !important;
    height: 46px;
}
button.view-btn.active {
    background: #0073aa !important;
    font-family: 'Montserrat';
    height: 46px;
    font-size: 18px;
    display: flex;
    align-items: center;
    border: 1px solid #0073aa !important;
    justify-content: center;
    border-radius: 4px;
}

button.btn-view.view-load {
	background: #0073aa !important;
    font-family: 'Montserrat';
    height: 46px;
    font-size: 12px;
    display: flex;
    align-items: center;
    border: 1px solid #0073aa !important;
    justify-content: center;
    border-radius: 4px;
}
button#reset-filters {
    height: 46px;
    font-family: 'Montserrat';
    font-size: 16px;
    border-radius: 4px;
}
button.btn-book.book-now-from-modal:hover{
	background: transparent !important;
	color:#0073aa !important;
}
a.mega-menu-link {
    text-transform: capitalize !important;
}
#signup-success a.btn-primary {
    background: #0073aa !important;
    color: white;
	 border: 1px solid #0073aa !important;
}
#signup-success a.btn-primary:hover {
    background: transparent !important;
    color: #0073aa !important;
    border: 1px solid #0073aa !important;
}
.carrier-dashboard .btn-primary {
    border: 1px solid #0073AA !important;
}
.carrier-dashboard .btn-primary:hover {
    background: transparent !important;
    border: 1px solid #0073AA !important;
}
tbody#loads-table-body td {
    font-size: 12px;
    line-height: 22px;
}
table#loads-table th {
    font-size: 12px;
}
button.view-btn.active:hover {
    background: transparent !important;
    border: 1px solid #0073aa !important;
    color: #0073aa !important;
}
.carrier-dashboard .btn-primary {
    font-weight: 400 !important;
}
button#reset-filters {
    background: transparent !important;
    border: 1px solid #0073AA !important;
    color: #0073AA !important;
}
button#reset-filters:hover {
    background: #0073aa !important;
    color: white !important;
}
button.view-btn {
    color: #0073aa;
    font-family: 'Montserrat';
    background: none;
    border: 1px solid #0073aa;
}
.view-btn:hover:not(.active) {
    background: #0073aa !important;
    color: white !important;
}
.filter-group input, .filter-group select {
	font-family: 'Montserrat';}
button.btn-view.view-load:hover {
    background: transparent !important;
    border: 1px solid #0073aa !important;
    color: #0073aa !important;
}
button#toggle-archive-msg, button#toggle-blocked-msg, button#toggle-inbox-msg{
	background: transparent !important;
    border: 1px solid #0073aa !important;
    color: #0073aa !important;
}
.msg-action-btns {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, 1fr);
}
.no-bookings a:hover {
    color: #0073aa;
}
.no-bookings a {
    border-radius:4px !important;
}
button#toggle-spam:hover {
    background: transparent !important;
    border: 1px solid #0073aa;
    color: #0073aa;
}
.btn-spam{
	line-height:100% !important;
}
a.btn-link.download-invoice {
    color: #0073AA !important;
}
a.btn-outline {
    border: 1px solid #0073AA !important;
    border-radius: 4px !important;
	display: flex;
    align-items: center;
    justify-content: center;
}
a.btn-outline:hover {
    background: #0073AA;
    color: white;
}
.profile-completion-alert {
    background: #0073aa !important;
}
button#send-verification {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
button.btn-primary:hover{
	background: transparent !important;
	color: #0073AA !important;
	border: 1px solid #0073AA !important;
}
.no-loads-message a {
    border: 1px solid #0073AA !important;
}
.no-loads-message a:hover {
    background: transparent !important;
    color: #0073AA !important;
    border: 1px solid #0073AA !important;
}
.payment-summary {
    background: #0073aa !important;
}
button#view-pricing {
    background: transparent !important;
    color: #0073AA !important;
    border: 1px solid #0073AA !important;
}
button#view-pricing:hover {
    background: #0073AA !important;
    color: white !important;
}
.plan-features li:before {
    color: #0073AA !important;
}
span.plan-badge.pay-per-use {
    background: #0073AA !important;
}
.empty-state .btn-primary{
	border: 1px solid #0073AA !important;
}
.empty-state .btn-primary:hover{
	background: transparent !important;
    color: #0073AA !important;
    border: 1px solid #0073AA !important;
}
.payment-option input[type="radio"]:checked + span {
    font-weight: bold;
    color: #667eea;
    white-space: nowrap;
}
label.payment-option span {
    white-space: nowrap;
}
label.payment-option {
    display: flex;
    align-items: center;
    justify-content: center;
}
div#browse-loads {
    flex: 1 100%;
}
.browse-loads-sidebar {
    flex: 1 50%;
}
.ad-group-header {
    background: #0073aa !important;
}
button.btn-review.add-shipper-review{
	    border: 1px solid #0073aa;
}
button.btn-track.contact-shipper{
	 background: transparent !important;
	    color: #0073aa !important;
			 border: 1px solid #0073aa;
}
button.btn-track.contact-shipper:hover{
	 background: #0073aa !important;
	    color: white !important;
			 border: 1px solid #0073aa;
}
span.plan-badge.pro {
    background: #0073aa !important;
    color: white !important;
}
button.btn-review.add-shipper-review:hover{
	    background: transparent !important;
	    color: #0073aa !important
}
.reset-password-container {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    margin-top: 10px;
}
.reset-password-container h2 {
    font-size: 28px;
    text-align: center;
}
button#submit-reset-password {
    padding: 12px 30px;
    border-radius: 6px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    border: 1px solid #0073aa;
    width: 100%;
    font-family: 'Montserrat';
    font-weight: 400;
    margin: 0px;
}
 input#confirm_password {
    margin: 0px;
}

input#confirm_password {
    width: 100%;
    border: 1px solid var(--gray);
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 0px;
}
form#custom-reset-password-form button#submit-reset-password:hover {
    background: transparent !important;
    color: #0073AA !important;
    border: 1px solid #0073AA !important;
}
div#custom-forgot-password-form {
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    margin-bottom: 50px;
} 
button#submit-forgot-password, button#back-to-login {
    font-family: 'Montserrat';
}
div#custom-forgot-password-form h3 {
    text-align: center;
    font-size: 28px;
    font-family: 'Montserrat';
}
div#custom-forgot-password-form p {
    font-size: 14px;
    text-align: center;
}
form#forgot-password-form {
    margin-top: 20px;
}
.form-group {
    margin-bottom: 0pc;
}

button#back-to-login {
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    border: 1px solid #0073aa;
    font-weight: 400;
    width: 50%;
}
button#submit-forgot-password {
    padding: 12px 30px;
    border-radius: 4px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    border: 1px solid #0073aa;
    font-weight: 400;
    width: 48%;
}
button#submit-forgot-password:hover, button#back-to-login:hover {
    background: transparent;
    color: #0073AA;
}
button#submit-reset-password {
    margin-top: 20px;
}