body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

header {
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.table-responsive {
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 5px;
}

.modal-content {
    border-radius: 10px;
}

.btn {
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn i {
    margin-right: 5px;
}

.form-control, .form-select {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ced4da;
}

.form-label {
    font-weight: 500;
    margin-bottom: 5px;
}

.badge {
    font-size: 0.85rem;
    padding: 5px 10px;
    border-radius: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .table-responsive {
        overflow-x: auto;
    }
}

/* Print styles for nota_pago */
@media print {
    body * {
        visibility: hidden;
    }
    #nota-pago, #nota-pago * {
        visibility: visible;
    }
    #nota-pago {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .no-print {
        display: none !important;
    }
}

/* Custom styles for nota_pago */
.nota-header {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.nota-footer {
    text-align: center;
    margin-top: 30px;
    border-top: 2px solid #333;
    padding-top: 10px;
    font-style: italic;
}

.product-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.product-table th, .product-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.product-table th {
    background-color: #f2f2f2;
}

.total-section {
    margin-top: 20px;
    font-weight: bold;
    text-align: right;
}

.client-info {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
}