

  #container {position:relative;background-color: #fff; border-top: 1px solid #f5f5f5; height: auto;margin-bottom:0px; padding-top:50px;padding-bottom:30px;}
    #container-wrap{max-width:80%;margin:0px auto;position:relative;padding-bottom: 50px;}
	
    .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .controls {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }
        .btn {
            padding: 8px 15px;
            background-color: #4CAF50;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .btn-secondary {
            background-color: #008CBA;
        }
        .btn-danger {
            background-color: #f44336;
        }
        .invoice-container {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
			margin-bottom: 60px;
        }
        .invoice-editable {
            margin: 0 auto;
            background: white;
            min-height: 297mm;
        }
        .border-shadow {
        }
        .editable {
            border: 1px dashed transparent;
            padding: 1px;
            min-height: 1.2em;
            display: inline-block;
            min-width: 20px;
        }
        .editable:hover {
            border-color: #4CAF50;
            background-color: #f9f9f9;
        }
        .editable:focus {
            border-color: #4CAF50;
            background-color: #f0f8f0;
            outline: none;
        }
        .add-item-btn {
            margin-top: 10px;
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 5px 10px;
            cursor: pointer;
        }
        .remove-item-btn {
            background-color: #f44336;
            color: white;
            border: none;
            padding: 2px 5px;
            cursor: pointer;
            font-size: 8px;
        }
        .no-export {
            /* Элементы, которые не должны экспортироваться */
        }
        
        /* Стили для таблицы ТОРГ-12 */
        .invoice_com_items {
            border-collapse: collapse;
            width: 100%;
        }
        .invoice_com_items td, .invoice_com_items th {
            border: 1px solid #000000;
            padding: 2px;
            margin: 0;
            font-size: 8pt;
            background-color: white;
            vertical-align: top;
        }
        .invoice_com_items thead th, .invoice_com_items thead td {
            font-weight: normal;
            text-align: center;
        }
        
        @media print {
            .no-print, .no-export {
                display: none !important;
            }
            .invoice-editable {
                border: none;
                box-shadow: none;
                margin: 0;
                padding: 0;
            }
            .border-shadow {
                border: none;
                padding: 0;
            }
            .editable {
                border: none !important;
            }
        }