/* FlowerShop CRM — Custom Styles */

body {
    background-color: #f5f7f5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Navbar */
.navbar-brand i {
    margin-right: 0.3rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 0.75rem;
}

.card-header {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,.08);
    padding: 1rem 1.25rem;
}

.card-footer {
    background: rgba(0,0,0,.05);
    border-top: 1px solid rgba(0,0,0,.08);
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Stat cards */
.card.text-bg-success,
.card.text-bg-info,
.card.text-bg-warning,
.card.text-bg-primary,
.card.text-bg-danger {
    border-radius: 0.75rem;
}

/* Tables */
.table th {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6c757d;
}

/* Barcode print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .barcode-label {
        page-break-inside: avoid;
        margin: 5mm;
        text-align: center;
    }
    
    .barcode-label img {
        max-width: 60mm;
    }
    
    .barcode-label .sku {
        font-family: monospace;
        font-size: 10pt;
    }
    
    .barcode-label .name {
        font-size: 8pt;
        max-width: 60mm;
        overflow: hidden;
    }
}

/* Photo thumbnails */
.photo-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.photo-thumb:hover {
    transform: scale(1.1);
}

/* Cart scan area */
.scan-area {
    border: 3px dashed #28a745;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    background: #f8fff8;
    transition: border-color 0.3s;
}

.scan-area.active {
    border-color: #ffc107;
    background: #fffef8;
}

/* Quantity badges */
.qty-zero {
    color: #dc3545;
    font-weight: bold;
}

.qty-low {
    color: #ffc107;
    font-weight: bold;
}
