.invoice-generator-wrapper-4f693ede {
    font-family: sans-serif;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.invoice-controls {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.invoice-controls .btn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.btn-primary {
    background: #0073aa;
    color: #fff;
}

.btn-secondary {
    background: #333;
    color: #fff;
}

.btn-remove {
    background: #dc3232;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.invoice-document {
    border: 1px solid #ddd;
    padding: 30px;
    background: #fff;
}

.invoice-header {
    margin-top: 0;
    margin-bottom: 5px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.invoice-table th, .invoice-table td {
    border: 1px solid #eee;
    padding: 10px;
    text-align: left;
}

.invoice-table th {
    background: #f9f9f9;
}

.text-right {
    text-align: right !important;
}

.invoice-table input[type="text"],
.invoice-table input[type="number"] {
    width: 100%;
    box-sizing: border-box;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

/* Print Specific */
.print-span {
    display: inline-block;
    width: 100%;
    padding: 5px 0;
}

@media print {
    .no-print {
        display: none !important;
    }
}
