﻿body {
    font-family: "Segoe UI", Tahoma, Arial, sans-serif !important;
}

/* Set default width for all nav items */
.navbar-nav .nav-item {
    width: 120px !important; /* Adjust width as needed */
    text-align: center !important;
    font-size: 22px !important;
}

    /* Set custom width for specific nav items */
    .navbar-nav .nav-item:nth-child(1) {
        width: 100px !important;
    }
    /* Home */

    .navbar-nav .nav-item:nth-child(2) {
        width: 140px !important;
    }
    /* On-Hand dropdown */

    .navbar-nav .nav-item:nth-child(3) {
        width: 80px !important;
    }
    /* Cart */

    .navbar-nav .nav-item:nth-child(4) {
        width: 170px !important;
    }
    /* Sales */

    .navbar-nav .nav-item:nth-child(5) {
        width: 170px !important;
    }
    /* Transfer */

    /* Dropdown Styling */
    .navbar-nav .nav-item.dropdown .dropdown-menu {
        width: 250px !important; /* Adjust width for dropdown */
        font-size: 20px !important; /* Adjust font size for dropdown menu */
        text-align: left !important;
    }

    .navbar-nav .nav-item.dropdown .dropdown-item {
        font-size: 18px !important; /* Adjust font size for dropdown items */
        padding: 10px 15px !important; /* Adjust padding */
        width: 100% !important; /* Make items fill the dropdown */
    }

.navbar-nav .login-dropdown {
    width: auto !important; /* Adjust width as needed */
    text-align: center !important;
    font-size: 22px !important;
}

    h1{
        font-size: 22px !important;
    }

.filters label{
    font-size: 16px !important;
}
.filters input,
.filters select{
    font-size: 16px !important;
}

table thead th{
    font-size: 16px !important;
}

table td{
    font-size: 16px !important;
}

.custom-breadcrumb {
    padding: 8px 0px;
    border-radius: 5px;
    font-size: 16px;
    display: flex;
    list-style: none;
    margin: 10px 0;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
}

    .breadcrumb-separator:not(:last-child)::after {
        content: "›"; /* Change separator to an arrow */
        margin: 0 8px;
        color: #6c757d;
    }

    .breadcrumb-separator a {
        text-decoration: none;
        color: #007bff;
        font-weight: 500;
        transition: color 0.2s ease-in-out;
    }

        .breadcrumb-separator a:hover {
            color: #0056b3; /* Darker blue on hover */
        }

    .breadcrumb-separator.active-path {
        font-weight: bold;
    }