﻿
/* ------------------------------------
   NAVIGATION PILL BUTTONS
---------------------------------------*/

.nav-pill-outline-logout,
.nav-pill-outline,
.nav-pill-solid {
    padding: 8px 20px !important;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px !important;
    line-height: 1.4;
}

.nav-pill-outline {
    border: 2px solid #22b24c !important;
    color: #22b24c !important;
    background: transparent !important;
}

.nav-pill-outline:hover {
    background: rgba(34, 178, 76, 0.08) !important;
    color: #22b24c !important;
}

.nav-pill-outline-logout {
    border: 2px solid #3981e7 !important;
    color: #3981e7 !important;
    background: transparent !important;
}

.nav-pill-outline-logout:hover {
    border: 2px solid #c62828 !important;
    background: rgba(198, 40, 40, 0.1) !important;
    color: #c62828 !important;
}




/* Login = Solid Green Pill */
.nav-pill-solid {
    background-color: #22b24c !important;
    border: 2px solid #22b24c !important;
    color: #ffffff !important;
}


/* Solid hover stays solid */
.nav-pill-solid:hover {
    background-color: #1f9e44 !important;
    border-color: #1f9e44 !important;
}


.btn-green-small {
    background-color: #22b24c !important;
    border: 2px solid #22b24c !important;
    color: #ffffff !important;
    padding: 10px 24px;
    border-radius: 30px !important;
    font-weight: 700;
    font-size: 14px;
    width: 48%;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.20) !important;
    transition: all .2s ease-in-out;
}

.btn-green-small:hover {
    background-color: #1f9e44 !important;
    border-color: #1f9e44 !important;
    color: #ffffff !important;
}


.btn-outline-cancel-small {
    padding: 10px 24px;
    border-radius: 30px !important;
    font-weight: 700;
    font-size: 14px;
    width: 48%;
    border: 2px solid #22b24c !important;
    color: #22b24c !important;
    background: transparent !important;
    text-align: center;
    transition: all .2s ease-in-out;
}

.btn-outline-cancel-small:hover {
    background: rgba(34,178,76,0.08) !important;
    color: #22b24c !important;
}

.btn-subscribe {
    height: 50px;
    padding: 0 40px !important;
    background-color: #22b24c !important;
    border: 2px solid #22b24c !important;
    border-radius: 40px !important;
    color: #ffffff !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.20) !important;
}

.btn-subscribe:hover,
.btn-subscribe:focus {
    background-color: #1f9e44 !important;
    border-color: #1f9e44 !important;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25) !important;
}


.vlWhiteBack {
    background-color: #fff;
}

.vlWhiteBackShadow {
    background-color: #fff;
    box-shadow: 0 6px 14px rgba(0,0,0,0.25) !important;
    border-radius: 14px;
}


.footer-socials {
    flex-wrap: nowrap;
    justify-content: flex-start;
}


/* FORCE horizontal row on mobile */
@media (max-width: 767px) {
    .footer-socials.d-flex {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        justify-content: center;
        align-items: center;
    }
}

