/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Custom Colors */
.bg-success {
    background-color: #28a745 !important;
}

/* Card Styles */
.card {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    border-radius: 8px 8px 0 0 !important;
    font-weight: 600;
}

/* Table Styles */
.table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

/* Button Styles */
.btn {
    border-radius: 4px;
    font-weight: 500;
}

/* Form Styles */
.form-control {
    border-radius: 4px;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Custom Styles for Invoice */
.invoice-header {
    border-bottom: 2px solid #28a745;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.invoice-footer {
    border-top: 2px solid #28a745;
    padding-top: 20px;
    margin-top: 20px;
}

/* Out of Stock Badge */
.out-of-stock {
    background-color: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Low Stock Badge */
.low-stock {
    background-color: #ffc107;
    color: #212529;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Customer History Styles */
.history-badge {
    background-color: #17a2b8;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Print Styles */
@media print {
    .no-print {
        display: none;
    }
    
    .container {
        width: 100%;
        max-width: 100%;
    }
    
    body {
        font-size: 12pt;
    }
    
    .card {
        border: none;
        box-shadow: none;
    }
} 