
        .check-container {
            max-width: 750px;
            margin: 0 auto;
            background: white;
            border: 1px solid #ddd;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .check-header {
            /*padding: 10px 30px;*/
            border-bottom: 1px solid #eee;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .bank-name {
            font-size: 24px;
            font-weight: 300;
            color: #333;
            border: none;
            outline: none;
            background: transparent;
            width: 300px;
        }

        .account-info {
            text-align: right;
            font-size: 14px;
            color: #666;
        }

        .account-info input {
            border: none;
            outline: none;
            background: transparent;
            width: 100px;
            text-align: right;
            margin-left: 10px;
            border-bottom: 1px solid #ddd;
            padding: 2px 0;
        }

        .check-body {
            padding: 30px;
        }

        .check-row {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            gap: 15px;
        }

        .check-label {
            color: #666;
            font-size: 14px;
            white-space: nowrap;
            min-width: fit-content;
        }

        .check-input {
            border: none;
            border-bottom: 1px solid #ddd;
            background: transparent;
            padding: 8px 0;
            font-size: 16px;
            color: #333;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .check-input:focus {
            border-bottom-color: #007bff;
        }

        .payee-input {
            flex: 1;
            margin-right: 20px;
        }

        .amount-input {
            width: 120px;
            text-align: right;
            font-weight: 500;
        }

        .amount-words-input {
            flex: 1;
            margin-right: 10px;
        }

        .signature-section {
            margin-top: 50px;
            display: flex;
            justify-content: space-between;
            align-items: end;
        }

        .date-section {
            text-align: left;
        }

        .date-input {
            width: 280px;
            margin-bottom: 5px;
        }

        .date-label {
            font-size: 12px;
            color: #999;
        }

        .signature-area {
            text-align: right;
        }

        .signature-line {
            width: 200px;
            height: 1px;
            background: #ddd;
            margin-bottom: 5px;
        }

        .signature-label {
            font-size: 12px;
            color: #999;
        }

        .crossed-lines {
            position: absolute;
            top: 15px;
            left: 15px;
            font-size: 18px;
            color: #666;
            cursor: pointer;
            user-select: none;
        }

        @media (max-width: 768px) {
            .check-container {
                margin: 10px;
            }
            
            .check-header {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .bank-name {
                width: 100%;
                text-align: center;
            }
            
            .check-row {
                flex-wrap: wrap;
            }
            
            .signature-section {
                flex-direction: column;
                gap: 30px;
                align-items: stretch;
            }
            
            .signature-area {
                text-align: left;
            }
        }
    