@font-face {
    font-family: 'Plus Jakarta Sans';
    src: url('/assets/fonts/PlusJakartaSans-VariableFont_wght.ttf') format('truetype');
    font-weight: 200 800;
    /* Supports weights from ExtraLight to ExtraBold */
    font-style: normal;
}

:root {
    --primary-color: #1A71F6;
    --sidebar-width: 280px;
    --bg-light: #F7F7F7;
    --border-color: #E5E7EB;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1A1A1A;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #D1D5DB transparent;
}

/* Bootstrap Resets / Global Utilities */
.card {
    border-radius: 22px;
}

.bg-danger {
    background-color: #EF4444 !important;
}



@media (min-width: 1400px) {
    .custom-content-padding {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}

.text-muted-small {
    font-size: 0.7rem !important;
}

/* Global: Disable Input Focus Styles */
.form-control:focus,
.form-select:focus,
input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
    outline: none !important;
}

.page-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Breadcrumb Styles */
.breadcrumb-item+.breadcrumb-item::before {
    content: "";
    background-image: url('../images/icons/breadcrumb_separator.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 16px;
    height: 16px;
    display: inline-block;
    padding: 0;
    margin: 0 10px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

/* Nav Pills */
.nav-pills .nav-link.active {
    background-color: #e7f1ff;
    color: #0d6efd;
    font-weight: 600;
}

.nav-pills .nav-link {
    color: #6c757d;
    font-weight: 500;
}

/* Stock Badges */
.badge-stock-in {
    background-color: #d1e7dd;
    color: #198754;
}

.badge-stock-out {
    background-color: #f8d7da;
    color: #dc3545;
}

/* Search Bar (Global if used outside component? Or keep for legacy) */
/* Moving .search-bar input to generic if needed, but component has its own. 
   Keeping minimal backup styled just in case */
.search-bar input {
    background-color: #fff;
    border: 2px solid #B0B0B0 !important;
}

.search-bar input:focus {
    border-color: none !important;
}