/* Custom styles for COLORS Print Manager */

/* ================================================================
   SIDEBAR NAVIGATION STYLES
   ================================================================ */

.sidebar-link {
    transition: all 0.3s ease;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.sidebar-link.active {
    background: rgba(255, 255, 255, 0.15);
    border-left: 4px solid #60A5FA;
}

.sidebar {
    transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .sidebar-mobile-open {
        transform: translateX(0);
    }
}

/* ================================================================
   ORIGINAL STYLES
   ================================================================ */

/* Additional utility classes */
.bg-sidebar {
    background-color: #1e3a8a; /* dark blue */
}

.text-sidebar {
    color: #dbeafe; /* light blue */
}

.border-sidebar {
    border-color: #3b82f6; /* blue */
}

.status-pending {
    @apply bg-yellow-100 text-yellow-800;
}

.status-in-progress {
    @apply bg-blue-100 text-blue-800;
}

.status-completed {
    @apply bg-green-100 text-green-800;
}

.status-delivered {
    @apply bg-indigo-100 text-indigo-800;
}

.status-closed {
    @apply bg-gray-100 text-gray-800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }

    .main-content {
        margin-left: 0;
    }
}

/* Print styles */
@media print {
    .no-print {
        display: none;
    }

    body {
        padding: 0;
        margin: 0;
    }
}