body {
            background-color: #f0f0f0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            padding: 20px;
        }
        .container {
            max-width: 800px;
            width: 100%;
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .title {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .title-detail {
            margin-left: 10px;
        }
        .body {
            margin-top: 20px;
        }
        .signature {
            margin-top: 40px;
            text-align: center;
        }
        .text-bold {
            font-weight: bold;
        }
        .flex {
            display: flex;
        }
        .justify-between {
            justify-content: space-between;
        }
        .text-right {
            text-align: right;
        }
        input[type="text"] {
            border: 1px solid #ccc;
            border-radius: 4px;
            padding: 5px;
            width: auto;
            margin-bottom: 5px;
        }
        .form-label {
            margin-top: 10px;
        }
        .button-group {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }
        
        /* Estilo para esconder botões durante a impressão */
        @media print {
            .button-group {
                display: none;
            }
        }