/* Custom styles */
.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.table th {
    background-color: #f8f9fa;
}

.modal-lg {
    max-width: 800px;
}

.sale-item {
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 10px;
}

.remove-item {
    padding: 0.25rem 0.5rem;
    font-size: 1.25rem;
    line-height: 1;
}

/* Product table styles */
.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.02);
}

.badge.bg-danger {
    padding: 0.35em 0.65em;
}

.btn-group-sm > .btn, .btn-sm {
    padding: 0.25rem 0.5rem;
    margin-left: 0.25rem;
}

/* Search input styles */
#searchInput {
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    transition: border-color 0.15s ease-in-out;
}

#searchInput:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Pagination styles */
.pagination {
    margin-bottom: 0;
    margin-top: 1rem;
}

.page-link {
    padding: 0.375rem 0.75rem;
}

.page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Modal styles */
.modal-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.table-responsive {
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
}

.card-body {
    padding: 1.5rem;
}