/* _content/MachineMartApp/Views/Shared/_Layout.cshtml.rz.scp.css */
/* Layout-specific styles */

/* Page Container Structure */
.page-container[b-hjbx3lethu] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrap[b-hjbx3lethu] {
    flex: 1;
    /* Fills the space between header and footer */
}

/* Navbar Styling */
.navbar[b-hjbx3lethu] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2c3e50; /* Dark Slate Gray */
    padding: 1rem 2rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Logo / Branding */
.navbar-brand[b-hjbx3lethu] {
    gap: 0;
}

.brand-logo[b-hjbx3lethu] {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.brand-title[b-hjbx3lethu] {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFA726;
}

.brand-contact[b-hjbx3lethu] {
    font-size: 0.75rem;
    color: #fff;
}

/* Navigation Links */
.nav-link[b-hjbx3lethu] {
    color: #ecf0f1 !important; /* Light Gray */
    margin-left: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-link:hover[b-hjbx3lethu] {
        color: #f39c12 !important; /* Orange on hover */
    }

    /* Active link */
    .nav-link.active[b-hjbx3lethu] {
        border-bottom: 2px solid #f39c12;
        color: #f39c12 !important;
    }

/* Login Button */
.login-btn[b-hjbx3lethu] {
    background-color: #f39c12;
    color: #fff;
    border: none;
    padding: 7px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .login-btn:hover[b-hjbx3lethu] {
        background-color: #e67e22;
    }

/* WhatsApp Ticker */
.ticker-container[b-hjbx3lethu] {
    width: 100%;
    height: 50px;
    overflow: hidden;
    position: relative;
    background: #f39c12;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center; /* Center horizontally */
}

.ticker-text[b-hjbx3lethu] {
    position: relative; /* Changed from absolute to relative for removing the animation */
    white-space: nowrap;
    font-size: 18px;
    opacity: 1; /* Always visible */
    /* Remove transform properties to keep it centered */
}

    .ticker-text.active[b-hjbx3lethu] {
        /* animation: tickerMove 25s linear forwards; */
        opacity: 1;
    }

.ticker-container:hover .ticker-text.active[b-hjbx3lethu] {
    animation-play-state: paused;
}

@keyframes tickerMove-b-hjbx3lethu {
    from {
        transform: translateX(600%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Modal Styling */
.modal-custom-size[b-hjbx3lethu] {
    max-width: 400px;
}


.whatsapp-link[b-hjbx3lethu] {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.whatsapp-link :hover[b-hjbx3lethu] {
    color: #006400; /* Darker green on hover */
    text-decoration: underline;
}

.whatsapp-icon[b-hjbx3lethu] {
    vertical-align: middle;
    margin-right: 8px;
}

/* Footer */
footer[b-hjbx3lethu] {
    padding: 1.5rem 0;
    background-color: #2c3e50;
    color: #ecf0f1;
}
