:root {
    /* Primary Colors */
    --primary-50: #e8f5e9;
    --primary-100: #c8e6c9;
    --primary-200: #a5d6a7;
    --primary-300: #81c784;
    --primary-400: #66bb6a;
    --primary-500: #4caf50;
    --primary-600: #43a047;
    --primary-700: #388e3c;
    --primary-800: #2e7d32;
    --primary-900: #1b5e20;
    
    /* Accent Colors */
    --accent-50: #f1f8e9;
    --accent-100: #dcedc8;
    --accent-200: #c5e1a5;
    --accent-300: #aed581;
    --accent-400: #9ccc65;
    --accent-500: #8bc34a;
    --accent-600: #7cb342;
    --accent-700: #689f38;
    --accent-800: #558b2f;
    --accent-900: #33691e;
    
    /* Gray Scale */
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;
    
    /* State Colors */
    --success: #4caf50;
    --info: #03a9f4;
    --warning: #ff9800;
    --danger: #f44336;
    
    /* Other Variables */
    --body-bg: #f9fbf9;
    --card-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.05);
    --header-height: 70px;
    --sidebar-width: 260px;
    --sidebar-collapsed-width: 80px;
    --border-radius: 10px;
    --transition-speed: 0.3s;
}

/* Base Styles */
body {
    background-color: var(--body-bg);
    font-family: 'Poppins', sans-serif;
    color: var(--gray-700);
    overflow-x: hidden;
    transition: background-color var(--transition-speed);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--gray-800);
    font-weight: 600;
}

a {
    color: var(--primary-600);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-800);
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    font-weight: 500;
    transition: all var(--transition-speed);
}

.btn-primary {
    background: linear-gradient(to right, var(--primary-500), var(--primary-600));
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
    background: linear-gradient(to right, var(--primary-600), var(--primary-700));
    box-shadow: 0 6px 15px rgba(76, 175, 80, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(to right, var(--accent-400), var(--accent-500));
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(139, 195, 74, 0.3);
}

.btn-secondary:hover, .btn-secondary:focus {
    background: linear-gradient(to right, var(--accent-500), var(--accent-600));
    box-shadow: 0 6px 15px rgba(139, 195, 74, 0.4);
    transform: translateY(-2px);
}

.btn-success {
    background: linear-gradient(to right, #2ecc71, #27ae60);
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

.btn-success:hover, .btn-success:focus {
    background: linear-gradient(to right, #27ae60, #219a52);
    box-shadow: 0 6px 15px rgba(46, 204, 113, 0.4);
    transform: translateY(-2px);
}

.btn-danger {
    background: linear-gradient(to right, #f44336, #e53935);
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(244, 67, 54, 0.3);
}

.btn-danger:hover, .btn-danger:focus {
    background: linear-gradient(to right, #e53935, #d32f2f);
    box-shadow: 0 6px 15px rgba(244, 67, 54, 0.4);
    transform: translateY(-2px);
}

.btn-warning {
    background: linear-gradient(to right, #ff9800, #fb8c00);
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.3);
}

.btn-warning:hover, .btn-warning:focus {
    background: linear-gradient(to right, #fb8c00, #f57c00);
    box-shadow: 0 6px 15px rgba(255, 152, 0, 0.4);
    transform: translateY(-2px);
}

.btn-info {
    background: linear-gradient(to right, #03a9f4, #039be5);
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(3, 169, 244, 0.3);
}

.btn-info:hover, .btn-info:focus {
    background: linear-gradient(to right, #039be5, #0288d1);
    box-shadow: 0 6px 15px rgba(3, 169, 244, 0.4);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-500);
    color: var(--primary-600);
    background: transparent;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary-50);
    color: var(--primary-700);
    border-color: var(--primary-600);
}

.btn-sm {
    padding: 0.4rem 0.8rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-icon.btn-sm {
    width: 32px;
    height: 32px;
}

.btn-icon.btn-lg {
    width: 48px;
    height: 48px;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    background-color: white;
    transition: all var(--transition-speed);
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card-header {
    background-color: white;
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
}

.card-header h5 {
    font-weight: 600;
    margin-bottom: 0;
}

.card-body {
    padding: 1.5rem;
}

/* Forms */
.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--gray-300);
    transition: all var(--transition-speed);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-300);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-text {
    color: var(--gray-600);
}

.input-group-text {
    background-color: var(--gray-100);
    border-color: var(--gray-300);
}

/* Figma Inspired Form Styling */
.form-figma-inspired .form-control {
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 0.8rem 1rem;
    border-radius: 10px;
    font-size: 1rem;
}

.form-figma-inspired .form-control:focus {
    background-color: white;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.15);
}

.form-figma-inspired .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
    margin-bottom: 0.7rem;
}

.form-figma-inspired .form-check-input:checked {
    background-color: var(--primary-500);
    border-color: var(--primary-500);
}

/* Alerts */
.alert {
    border: none;
    border-radius: var(--border-radius);
    padding: 1rem 1.25rem;
    position: relative;
}

.alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.alert-danger {
    background-color: #ffebee;
    color: #c62828;
}

.alert-warning {
    background-color: #fff8e1;
    color: #f57f17;
}

.alert-info {
    background-color: #e3f2fd;
    color: #0288d1;
}

/* Tables */
.table {
    width: 100%;
    margin-bottom: 1rem;
    color: var(--gray-700);
    vertical-align: middle;
    border-color: var(--gray-200);
}


.table > :not(:first-child) {
    border-top: 1px solid var(--gray-200);
}

.table > :not(caption) > * > * {
    padding: 0.75rem;
}

.table > thead {
    background-color: var(--gray-50);
}

.table > thead > tr > th {
    font-weight: 600;
    color: var(--gray-800);
    border-bottom-width: 1px;
    text-transform: none;
    font-size: 0.875rem;
}

.table-hover tbody tr:hover {
    background-color: var(--gray-50);
}


/* Pagination */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 0.25rem;
}

.page-link {
    position: relative;
    display: block;
    color: var(--primary-600);
    text-decoration: none;
    background-color: #fff;
    border: 1px solid var(--gray-200);
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    padding: 0.5rem 0.75rem;
}

.page-link:hover {
    z-index: 2;
    color: var(--primary-800);
    background-color: var(--gray-100);
    border-color: var(--gray-300);
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--primary-500);
    border-color: var(--primary-500);
}

.page-item.disabled .page-link {
    color: var(--gray-500);
    pointer-events: none;
    background-color: #fff;
    border-color: var(--gray-200);
}

/* Badges */
.badge {
    padding: 0.35em 0.65em;
    font-weight: 500;
    border-radius: 50rem;
}

.badge-primary {
    background-color: var(--primary-100);
    color: var(--primary-800);
}

.badge-secondary {
    background-color: var(--accent-100);
    color: var(--accent-800);
}

.badge-success {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.badge-danger {
    background-color: #ffebee;
    color: #c62828;
}

.badge-warning {
    background-color: #fff8e1;
    color: #f57f17;
}

.badge-info {
    background-color: #e3f2fd;
    color: #0288d1;
}

/* Modal */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    padding: 1.25rem 1.5rem;
}

.modal-title {
    font-weight: 600;
}

/* Dashboard Stats */
.stats-card {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    background-color: white;
    display: flex;
    align-items: center;
    transition: all var(--transition-speed);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stats-card .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-right: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.stats-card .stats-info h5 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.stats-card .stats-info p {
    color: var(--gray-600);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.stats-card.primary .icon {
    background: linear-gradient(45deg, var(--primary-500), var(--primary-600));
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.stats-card.secondary .icon {
    background: linear-gradient(45deg, var(--accent-500), var(--accent-600));
    box-shadow: 0 5px 15px rgba(139, 195, 74, 0.3);
}

.stats-card.success .icon {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.stats-card.info .icon {
    background: linear-gradient(45deg, #03a9f4, #039be5);
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.3);
}

.stats-card.warning .icon {
    background: linear-gradient(45deg, #ff9800, #fb8c00);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.stats-card.danger .icon {
    background: linear-gradient(45deg, #f44336, #e53935);
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--sidebar-width);
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-speed);
    overflow-y: auto;
}

.sidebar-collapsed {
    width: var(--sidebar-collapsed-width);
}

.sidebar-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-logo {
    display: flex;
    align-items: center;
}

.sidebar-logo img {
    width: 40px;
    margin-right: 1rem;
}

.sidebar-logo h5 {
    margin-bottom: 0;
    color: var(--primary-600);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.sidebar-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-500);
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all var(--transition-speed);
}

.sidebar-toggle:hover {
    background-color: var(--primary-600);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.sidebar-menu {
    padding: 1.5rem 0;
}

.sidebar-title {
    padding: 0 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.sidebar-item {
    padding: 0.75rem 1.5rem;
    margin: 0.25rem 0;
    display: flex;
    align-items: center;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: 8px;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    transition: all var(--transition-speed);
}

.sidebar-item .icon {
    font-size: 1.25rem;
    margin-right: 1rem;
    color: var(--gray-600);
    transition: all var(--transition-speed);
}

.sidebar-item span {
    font-weight: 500;
}

.sidebar-item.active {
    background-color: var(--primary-50);
    color: var(--primary-700);
}

.sidebar-item.active .icon {
    color: var(--primary-500);
}

.sidebar-item:hover {
    background-color: var(--gray-100);
}

.sidebar-item:hover::after {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    background-color: var(--gray-800);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.sidebar-divider {
    margin: 1rem 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* For collapsed sidebar */
.sidebar-collapsed .sidebar-logo h5,
.sidebar-collapsed .sidebar-title,
.sidebar-collapsed .sidebar-item span {
    display: none;
}

.sidebar-collapsed .sidebar-item {
    justify-content: center;
    padding: 0.75rem;
}

.sidebar-collapsed .sidebar-item .icon {
    margin-right: 0;
}

/* Sidebar Minimized Styles */
.sidebar-menu.minimized .sidebar-item {
    position: relative;
}

.sidebar-menu.minimized .sidebar-item:hover::after {
    content: attr(data-title);
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    background-color: var(--gray-800);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Main Content */
.main-content {
    margin-left: var(--sidebar-width);
    transition: margin-left var(--transition-speed);
    min-height: 100vh;
    padding-top: var(--header-height);
    padding-bottom: 2rem;
}

.main-content-expanded {
    margin-left: var(--sidebar-collapsed-width);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: var(--sidebar-width);
    height: var(--header-height);
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 999;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    transition: left var(--transition-speed);
}

.header-expanded {
    left: var(--sidebar-collapsed-width);
}

.header-search {
    width: 300px;
    position: relative;
}

.header-search .form-control {
    padding-left: 2.5rem;
    border-radius: 50px;
    background-color: var(--gray-100);
    border: 1px solid var(--gray-200);
}

.header-search .icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-500);
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header-notification {
    position: relative;
    margin-right: 1.5rem;
}

.header-notification .icon {
    font-size: 1.5rem;
    color: var(--gray-600);
    cursor: pointer;
    transition: color var(--transition-speed);
}

.header-notification .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: var(--primary-500);
    color: white;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.header-notification .icon:hover {
    color: var(--primary-500);
}

.header-user {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 0.75rem;
    border: 2px solid var(--gray-200);
    transition: border-color var(--transition-speed);
}

.header-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-user:hover .header-user-avatar {
    border-color: var(--primary-300);
}

.header-user-info {
    display: flex;
    flex-direction: column;
}

.header-user-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9rem;
    line-height: 1.2;
}

.header-user-role {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all var(--transition-speed);
}

.dropdown-item:hover {
    background-color: var(--gray-100);
}

.dropdown-item i {
    margin-right: 0.5rem;
    color: var(--gray-600);
}

.dropdown-divider {
    border-top: 1px solid var(--gray-200);
}

/* Content */
.content {
    padding: 1.5rem;
}

.content-title {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1.5rem;
}

.breadcrumb-item a {
    color: var(--gray-600);
}

.breadcrumb-item.active {
    color: var(--gray-800);
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-500);
}

/* Charts */
.chart-container {
    position: relative;
    height: 350px;
}

/* Avatars */
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-200);
    color: var(--gray-700);
    font-weight: 600;
    font-size: 1rem;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-sm {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
}

.avatar-lg {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
}

.avatar-xl {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group .avatar {
    margin-left: -10px;
    border: 2px solid white;
}

.avatar-group .avatar:first-child {
    margin-left: 0;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--gray-200);
}

.timeline-dot {
    position: absolute;
    left: -1.875rem;
    top: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--primary-500);
    border: 2px solid white;
}

.timeline-content {
    padding: 1.25rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

/* Progress Bar */
.progress {
    height: 0.75rem;
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(to right, var(--primary-500), var(--primary-600));
}

.progress-bar-success {
    background: linear-gradient(to right, #2ecc71, #27ae60);
}

.progress-bar-info {
    background: linear-gradient(to right, #03a9f4, #039be5);
}

.progress-bar-warning {
    background: linear-gradient(to right, #ff9800, #fb8c00);
}

.progress-bar-danger {
    background: linear-gradient(to right, #f44336, #e53935);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 600;
    border-radius: 50rem;
}

.status-badge-success {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success);
}

.status-badge-success:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success);
    margin-right: 0.5rem;
}

.status-badge-warning {
    background-color: rgba(255, 152, 0, 0.1);
    color: var(--warning);
}

.status-badge-warning:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--warning);
    margin-right: 0.5rem;
}

.status-badge-danger {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--danger);
}

.status-badge-danger:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--danger);
    margin-right: 0.5rem;
}

/* QR Code */
.qr-code-container {
    text-align: center;
    padding: 1rem;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    margin-bottom: 1rem;
}

.qr-code-container img {
    max-width: 100%;
    height: auto;
}

/* Asset Label */
.asset-label {
    width: 300px;
    height: 120px;
    padding: 15px;
    border: 1px dashed var(--gray-300);
    border-radius: 5px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    box-shadow: var(--card-shadow);
    margin-bottom: 1rem;
}

.asset-label-qr {
    width: 90px;
    height: 90px;
}

.asset-label-info {
    flex: 1;
    padding-left: 15px;
}

.asset-label-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--gray-800);
}

.asset-label-detail {
    font-size: 12px;
    color: var(--gray-700);
    margin-bottom: 3px;
}

.asset-label-logo {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 30px;
    height: auto;
    opacity: 0.7;
}

/* File Uploader */
.file-uploader {
    position: relative;
    padding: 2rem;
    border: 2px dashed var(--gray-300);
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.file-uploader:hover {
    border-color: var(--primary-300);
}

.file-uploader input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-uploader-icon {
    font-size: 2.5rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.file-uploader-text {
    font-weight: 500;
    color: var(--gray-700);
}

.file-uploader-hint {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .sidebar {
        width: var(--sidebar-collapsed-width);
    }

    .sidebar-logo h5,
    .sidebar-title,
    .sidebar-item span {
        display: none;
    }

    .sidebar-item {
        justify-content: center;
        padding: 0.75rem;
    }

    .sidebar-item .icon {
        margin-right: 0;
    }

    .main-content {
        margin-left: var(--sidebar-collapsed-width);
    }

    .header {
        left: var(--sidebar-collapsed-width);
    }
}

@media (max-width: 768px) {
    .header-search {
        display: none;
    }
    
    .content {
        padding: 1rem;
    }

    /* Hide toggle button on mobile */
    .sidebar-toggle {
        display: none;
    }
}

@media (max-width: 576px) {
    .header-user-info {
        display: none;
    }
    
    .stats-card {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-card .icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

/* Utilities */
.bg-soft-primary {
    background-color: var(--primary-50);
}

.bg-soft-success {
    background-color: #e8f5e9;
}

.bg-soft-info {
    background-color: #e3f2fd;
}

.bg-soft-warning {
    background-color: #fff8e1;
}

.bg-soft-danger {
    background-color: #ffebee;
}

.text-primary {
    color: var(--primary-600) !important;
}

.text-success {
    color: #2e7d32 !important;
}

.text-info {
    color: #0288d1 !important;
}

.text-warning {
    color: #f57f17 !important;
}

.text-danger {
    color: #c62828 !important;
}

.rounded-xl {
    border-radius: 1rem !important;
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

.border-dashed {
    border-style: dashed !important;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-500);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner-sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

.spinner-lg {
    width: 60px;
    height: 60px;
    border-width: 4px;
}

/* Toasts */
.toast {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: none;
}

.toast-header {
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-800);
}

.toast-body {
    padding: 1rem;
}