        body {
            background-color: #f8f9fa;
        }

        .back-link {
            color: #6c757d;
            font-weight: 500;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: color 0.2s;
        }

        .back-link:hover {
            color: #0d6efd;
        }

        .back-link i {
            font-size: 1.25rem;
        }

        .form-label {
            font-weight: 600;
            color: #495057;
        }

        .card {
            border-radius: 12px;
        }

        .btn-outline-secondary {
            border-radius: 8px;
            font-weight: 500;
        }

        .btn-primary {
            border-radius: 8px;
            font-weight: 500;
        }

        /* File Upload */
        .upload-box-placeholder {
            width: 100px;
            height: 100px;
            background-color: #e9ecef;
            border-radius: 8px;
            border: 1px solid #dee2e6;
        }

        .upload-box-label {
            width: 100px;
            height: 100px;
            border: 2px dashed #ced4da;
            background-color: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            cursor: pointer;
            transition: border-color 0.2s, background-color 0.2s;
        }

        .upload-box-label:hover {
            border-color: #0d6efd;
            background-color: #e9f5ff;
        }

        .upload-box-label i {
            color: #6c757d;
        }

        /* Select2 (Fixed for full width and better tag display) */
        .select2-container {
            width: 100% !important;
            /* Ensure the entire container is full width */
        }

        .select2-container--default .select2-selection--multiple {
            min-height: 38px;
            border-radius: 8px;
            border: 1px solid #dee2e6;
            padding: 4px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__rendered {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            padding: 0;
            margin: 0;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice {
            background-color: #e9ecef;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            padding: 2px 8px;
            display: flex;
            align-items: center;
            margin: 2px;
            font-size: 14px;
            color: #495057;
            font-weight: 500;
            max-width: 100%;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
            margin-right: 5px;
            cursor: pointer;
            color: #6c757d;
            font-weight: 600;
        }

        .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
            /* Reverted this to a more standard style to fix the "blocked" appearance */
            padding-left: 0;
            white-space: nowrap;
            display: inline-block;
            /* Revert to inline to prevent full-width behavior of individual tags */
        }

        .select2-container--default .select2-selection--multiple .select2-search--inline {
            flex: 1;
            min-width: 100px;
            margin: 2px;
        }

        .select2-container--default .select2-selection--multiple .select2-search--inline .select2-search__field {
            border: none;
            outline: none;
            box-shadow: none;
            margin-top: 0;
            height: 28px;
            padding: 0;
        }

        @media (min-width: 1400px) {
            .container {
                max-width: 100% !important;
                margin-top: 0px !important;
            }
        }