* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.4;
    color: #1a202c;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    font-size: 24px;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.calendar-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 0.5rem;
    border-radius: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}

h2 {
    margin-bottom: 1rem;
    color: #1e3a8a;
    font-size: 36px;
    font-weight: 700;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: min-content;
    gap: 0.25rem;
    height: 100%;
    flex: 1;
    overflow: auto;
}

.calendar-time-display {
    grid-column: 1 / -1;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 3px solid #e2e8f0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.calendar-time-display .time {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    text-shadow: none;
}

.calendar-time-display .date {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

/* Sync Container */
.sync-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.sync-btn {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #475569;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 40px;
    box-sizing: border-box;
}

.sync-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sync-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.sync-btn.syncing {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1e40af;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.sync-btn.syncing .sync-icon {
    animation: spin 1s linear infinite;
}


.sync-btn.error {
    background: #fee2e2;
    border-color: #ef4444;
    color: #dc2626;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

@keyframes spin {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

.sync-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.sync-text {
    font-size: 12px;
}

.last-sync {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
}

.last-sync-label {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
}

.last-sync-time {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
}

/* Compact Mode Toggle */
.compact-toggle {
    margin-left: auto;
}

/* Search Container */
.search-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.search-input {
    padding: 0.5rem 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    width: 220px;
    background: #ffffff;
    color: #1a202c;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 40px;
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-input::placeholder {
    color: #94a3b8;
}

.clear-search-btn {
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    color: #64748b;
    transition: all 0.2s ease;
}

.clear-search-btn:hover {
    background: #e2e8f0;
    color: #475569;
    border-color: #cbd5e1;
}

/* Search Highlight */
.calendar-task.search-highlight {
    background: #fef3c7 !important;
    border-left-color: #f59e0b !important;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3) !important;
}

.calendar-task.search-highlight.urgent {
    background: #fef3c7 !important;
    border-left-color: #f59e0b !important;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3) !important;
}

.calendar-task.search-highlight.completed {
    background: #fef3c7 !important;
    border-left-color: #f59e0b !important;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3) !important;
    text-decoration: line-through;
    opacity: 0.7;
}

.compact-mode .search-input {
    width: 150px;
    font-size: 12px;
    padding: 0.25rem 0.5rem;
}

.compact-mode .clear-search-btn {
    width: 20px;
    height: 20px;
    font-size: 12px;
}

.compact-btn {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #475569;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    height: 40px;
    box-sizing: border-box;
}

.compact-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.compact-btn.active {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1e40af;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.compact-icon {
    font-size: 16px;
    font-weight: bold;
}

.compact-text {
    font-size: 12px;
}

/* Compact Mode Styles */
.compact-mode .calendar-task,
.compact-mode .task-item {
    padding: 0.125rem 0.375rem;
    font-size: 12px;
    line-height: 1.1;
    gap: 0.05rem;
}

.compact-mode .calendar-task .task-title,
.compact-mode .task-item .task-title {
    font-size: 12px;
    font-weight: 500;
}

.compact-mode .calendar-task .task-date,
.compact-mode .task-item .task-date {
    font-size: 10px;
    color: #64748b;
}

.compact-mode .calendar-day {
    min-height: 60px;
    padding: 0.125rem;
}

.compact-mode .calendar-day > div:first-child {
    font-size: 12px;
    margin-bottom: 0.05rem;
}

.compact-mode .calendar-day-header {
    font-size: 14px;
    padding: 0.125rem;
}

.compact-mode .calendar-tasks-container {
    gap: 0.125rem;
}

.compact-mode .time {
    font-size: 20px;
}

.compact-mode .date {
    font-size: 14px;
}

.compact-mode .sync-btn {
    padding: 0.375rem 0.75rem;
    font-size: 14px;
    height: 40px;
}

.compact-mode .sync-icon {
    width: 16px;
    height: 16px;
}

.compact-mode .sync-text {
    font-size: 12px;
}

.compact-mode .last-sync-label {
    font-size: 9px;
}

.compact-mode .last-sync-time {
    font-size: 10px;
}

/* Calendar Day Headers */
.calendar-day-header {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    padding: 0.75rem;
    text-align: center;
    font-weight: 700;
    color: #0f172a;
    border-bottom: 2px solid #cbd5e1;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Calendar Days */
.calendar-day {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.5rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
    position: relative;
}

.calendar-day > div:first-child {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
    text-align: center;
}

.calendar-day.today {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.calendar-day.has-tasks {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.calendar-day.drag-over {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.3);
}

.calendar-tasks-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow-y: auto;
    padding: 0.25rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
}

/* Task Items */
.calendar-task, .task-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.calendar-task {
    margin-bottom: 0.25rem;
}

.calendar-task .task-title {
    font-weight: 600;
    color: #1a202c;
}

.calendar-task .task-date {
    font-size: 12px;
    color: #64748b;
}

.calendar-task.urgent, .task-item.urgent {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    box-shadow: 0 2px 4px rgba(239, 68, 68, 0.1);
}

.task-item.overdue {
    border-left-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
}

.calendar-task.completed, .task-item.completed {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left-color: #22c55e;
    opacity: 0.8;
    text-decoration: line-through;
}

.calendar-task.dragging {
    opacity: 0.5;
    transform: rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

/* Drop indicator styles */
.drop-indicator {
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 2px;
    margin: 4px 0;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
    animation: dropIndicatorPulse 1s ease-in-out infinite alternate;
}

@keyframes dropIndicatorPulse {
    from { 
        opacity: 0.6; 
        transform: scaleX(0.95); 
    }
    to { 
        opacity: 1; 
        transform: scaleX(1); 
    }
}

/* Enhanced drag over styles for reordering */
.calendar-tasks-container.drag-over {
    background: rgba(59, 130, 246, 0.05);
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

/* Visual feedback for reordering */
.calendar-task:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
}

.calendar-task:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Compact mode adjustments for reordering */
.compact-mode .drop-indicator {
    height: 2px;
    margin: 2px 0;
}

.compact-mode .calendar-task:hover {
    transform: none;
}

.compact-mode .calendar-task.dragging {
    transform: rotate(3deg);
}

.task-title {
    font-weight: 600;
    color: #1a202c;
}

.task-date {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.task-hint {
    font-size: 0.625rem;
    color: #94a3b8;
    margin-top: 0.25rem;
    font-style: italic;
    opacity: 0.8;
}

.task-list {
    padding: 1rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.task-item {
    margin-bottom: 0.5rem;
}

.task-item .task-title {
    font-size: 16px;
}

.task-item .task-date {
    font-size: 14px;
}

/* HVAC-specific task states */
.calendar-task.installation, .task-item.installation {
    border-left-color: #3b82f6;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.calendar-task.maintenance, .task-item.maintenance {
    border-left-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.calendar-task.repair, .task-item.repair {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.calendar-task.emergency, .task-item.emergency {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 2px 4px rgba(239, 68, 68, 0.1);
    }
    50% {
        box-shadow: 0 2px 4px rgba(239, 68, 68, 0.3);
    }
}

/* Status-based task styling */
.calendar-task.status-22, .task-item.status-22 {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.1);
}

.calendar-task.status-23, .task-item.status-23 {
    border-left-color: #06b6d4;
    background: linear-gradient(135deg, #ecfeff 0%, #cffafe 100%);
    box-shadow: 0 2px 4px rgba(6, 182, 212, 0.1);
}

/* Confirmation Dialog */
.confirmation-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.confirmation-content {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.confirmation-content h3 {
    color: #1e3a8a;
    font-size: 24px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.confirmation-content p {
    color: #475569;
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 1.5;
}

.confirmation-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.confirm-btn, .cancel-btn {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* HVAC-specific completion options */
.confirm-btn.to-packed {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3);
}

.confirm-btn.to-packed:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(245, 158, 11, 0.4);
}

.confirm-btn.ready-for-pickup {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.confirm-btn.ready-for-pickup:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

.confirm-btn.ready-for-courier {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
}

.confirm-btn.ready-for-courier:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.4);
}

.confirm-btn.complete-locally {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(107, 114, 128, 0.3);
}

.confirm-btn.complete-locally:hover {
    background: linear-gradient(135deg, #4b5563 0%, #374151 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(107, 114, 128, 0.4);
}

.confirm-btn.to-be-delivered {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(6, 182, 212, 0.3);
}

.confirm-btn.to-be-delivered:hover {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(6, 182, 212, 0.4);
}

.confirm-btn.delivered {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(20, 184, 166, 0.3);
}

.confirm-btn.delivered:hover {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(20, 184, 166, 0.4);
}

.confirm-btn.collected {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.confirm-btn.collected:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.4);
}

.cancel-btn {
    background: #f1f5f9;
    color: #64748b;
    border: 2px solid #e2e8f0;
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

.cancel-btn:hover {
    background: #e2e8f0;
    color: #475569;
    transform: translateY(-1px);
}

/* Responsive design for HVAC theme */
@media (max-width: 768px) {
    .confirmation-buttons {
        grid-template-columns: 1fr;
    }
}

/* Order Modal Styles */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
}

.order-modal-content {
    background: white;
    border-radius: 12px;
    max-width: 1400px;
    width: 100%;
    max-height: 95vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.order-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem 0.75rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.order-modal-header h2 {
    margin: 0;
    color: #1e293b;
    font-size: 1.125rem;
    font-weight: 600;
}

.close-modal-btn {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close-modal-btn:hover {
    background: #f1f5f9;
    color: #475569;
}

.order-modal-body {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.picklist-products {
    margin-bottom: 0;
}

.picklist-products h3 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.picklist-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.picklist-item {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 0.75rem;
    gap: 0.75rem;
    transition: all 0.2s ease;
    min-height: 80px;
}

.picklist-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.picklist-number {
    background: #3b82f6;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.picklist-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.picklist-code {
    background: #f1f5f9;
    color: #1e293b;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    display: inline-block;
    align-self: flex-start;
}

.picklist-name {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.3;
    margin: 0;
}

.picklist-variant {
    color: #7c2d12;
    font-size: 0.6875rem;
    font-style: italic;
    line-height: 1.3;
    background: #fef3c7;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    border-left: 2px solid #f59e0b;
    margin: 0;
}

.picklist-quantity {
    background: #10b981;
    color: white;
    padding: 0.375rem 0.625rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 32px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.picklist-actions {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.action-btn {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.action-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

/* Responsive design for order modal */
@media (max-width: 768px) {
    .order-modal-content {
        margin: 0.5rem;
        max-height: 95vh;
        max-width: calc(100vw - 1rem);
    }
    
    .order-modal-header {
        padding: 0.75rem 1rem 0.5rem 1rem;
    }
    
    .order-modal-body {
        padding: 0.75rem 1rem 1rem 1rem;
    }
    
    .picklist-items {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .picklist-item {
        padding: 0.625rem;
        gap: 0.625rem;
        min-height: 70px;
    }
    
    .picklist-number {
        width: 20px;
        height: 20px;
        font-size: 0.6875rem;
    }
    
    .picklist-quantity {
        padding: 0.25rem 0.5rem;
        font-size: 0.6875rem;
        min-width: 28px;
    }
}