/**
 * EECOL Wire Tools Suite - Shipping Manifest Styles
 * Enterprise PWA v0.8.0.0
 */

/* Load Roboto Font */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap');

/* ===== SHIPPING MANIFEST SPECIFIC STYLES ===== */
html, body {
    height: 100%;
    min-height: 100vh;
}

body {
    font-family: 'Roboto', sans-serif;
    --eecol-blue: #0058B3;
}

.eecol-blue-bg {
    background-image: linear-gradient(to bottom, var(--eecol-blue) 20%, white 80%);
}

.header-gradient {
    background-image: linear-gradient(90deg, var(--eecol-blue), #004a99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.card-border-blue {
    border-left-color: var(--eecol-blue);
}

.eecol-logo-tilt {
    transform: rotate(-20deg);
    transform-origin: center;
}

/* ===== MOBILE RESPONSIVE IMPROVEMENTS ===== */
@media (max-width: 640px) {
    .record-item-mobile {
        display: block !important;
    }
    .hide-on-mobile {
        display: none !important;
    }
    .mobile-stack {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    .mobile-form-stack {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    .mobile-form-group {
        width: 100% !important;
        margin-bottom: 0.75rem;
    }
    .mobile-touch-input {
        padding: 0.75rem !important;
        font-size: 16px !important;
        min-height: 44px !important;
    }
    .mobile-button-stack {
        flex-direction: column !important;
        gap: 0.5rem !important;
        width: 100%;
    }
    .mobile-button-stack button,
    .mobile-button-stack a {
        width: 100% !important;
        margin: 0 !important;
        padding: 0.75rem 1rem !important;
        min-height: 44px !important;
    }
    .mobile-compact-spacing {
        gap: 0.5rem !important;
        padding: 0.75rem !important;
    }
    .space-y-4 > * + * {
        margin-top: 0.75rem !important;
    }
    .space-y-6 > * + * {
        margin-top: 1rem !important;
    }
}

/* ===== TOUCH DEVICE OPTIMIZATIONS ===== */
@media (hover: none) and (pointer: coarse) {
    button, input, select {
        min-height: 44px !important;
    }
}

/* ===== PRINT STYLES FOR LABELS ===== */
@media print {
    body * {
        visibility: hidden;
    }
    .label-content, .label-content * {
        visibility: visible;
    }
    .label-content {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        font-family: Arial, sans-serif;
    }
    .no-print {
        display: none !important;
    }
}
