
    body {
        font-family: Arial, sans-serif;
        background-color: #f7f9fc;
        margin: 20px;
        color: #333;
    }

    /* fieldset {
        border: 2px solid #076633;
        border-radius: 8px;
        padding: 20px;
        background-color: #ffffff;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }

    legend {
        font-size: 1.2rem;
        font-weight: bold;
        color: #076633;
        padding: 0 10px;
    } */

    .file-upload-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        /* margin-top: 20px; */
    }

    .file-upload-block {
        flex: 1 1 calc(50% - 20px);
        background-color: #e6920c;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .file-upload-block:hover {
        transform: translateY(-5px);
        box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
    }

    .file-upload-block label {
        font-size: 1rem;
        color: white;
        font-weight: bold;
        display: block;
        margin-bottom: 10px;
    }

    .file-upload-block input[type="file"] {
        display: block;
        width: 100%;
        padding: 10px;
        border: none;
        border-radius: 4px;
        background-color: #ffffff;
        color: #333;
        font-size: 1rem;
        cursor: pointer;
    }

    .file-upload-block input[type="file"]::-webkit-file-upload-button {
        background-color: #076633;
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 4px;
        font-size: 1rem;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .file-upload-block input[type="file"]::-webkit-file-upload-button:hover {
        background-color: #055126;
    }

    @media (max-width: 768px) {
        .file-upload-block {
            flex: 1 1 100%;
        }
    }

    .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
        color: white !important;
        background-color: #076633 !important;
    }

    .bootstrap-wrapper {
        @apply not-tailwind;
    }
    