    /* Compact table style */
    .compact-table {
        border-collapse: collapse;
        width: 100%;
    }

    .compact-table th,
    .compact-table td {
        border: 1px solid #ddd;
        padding: 2px;
    }

    .compact-table th {
        background-color: #f2f2f2;
        text-align: left;
    }

    /* Adjustments for compactness */
    .compact-table td input[type="text"],
    .compact-table td select {
        width: 100px; /* Adjust width as needed */
        padding: 2px; /* Adjust padding as needed */
        font-size: 10px; /* Adjust font size as needed */
    }

    .compact-table td textarea {
        width: 200px; /* Adjust width as needed */
        padding: 2px; /* Adjust padding as needed */
        font-size: 10px; /* Adjust font size as needed */
        resize: none; /* Prevent resizing for textareas */
    }