/* Custom styles for Invoice System */

/* Favicon fallback */
.navbar-brand::before {
    content: "📄";
    margin-right: 5px;
}

/* Custom button styles */
.btn-invoice {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.btn-invoice:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    color: white;
}

/* Table enhancements */
.table-hover tbody tr:hover {
    background-color: rgba(13, 110, 253, 0.075);
}

/* Code block styling */
pre {
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Search form styling */
.search-form {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 0.375rem;
    margin-bottom: 1rem;
}

/* API documentation styling */
.api-endpoint {
    font-family: 'Courier New', monospace;
    background-color: #f8f9fa;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    border: 1px solid #dee2e6;
}

/* Status badges */
.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Loading spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .btn-sm {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    pre {
        font-size: 0.75rem;
        overflow-x: auto;
    }
}

/* Print styles */
@media print {
    .navbar, .btn, .pagination {
        display: none !important;
    }
    
    .card {
        border: none !important;
        box-shadow: none !important;
    }
}