        /* Styling for the form */
        .form-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 40px 30px;
            font-family: 'Open Sans', sans-serif;
            background: transparent;
            border-radius: 0;
            box-shadow: none;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        /* Custom file input styling */
        .custom-file-input {
            position: relative;
            display: flex;
            justify-content: center;
            width: 100%;
            margin-bottom: 20px;
        }

        .custom-file-input input[type="file"] {
            position: absolute;
            left: 0;
            top: 0;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }

        .custom-file-input label {
            padding: 14px 20px;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            background: #ffffff;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 300px;
            box-shadow: none;
        }

        .custom-file-input label:hover {
            border-color: #f78021;
            background: #fff5f0;
            transform: none;
            box-shadow: none;
        }

        .custom-file-input.selected label {
            background: #d4edda;
            color: #155724;
            border-color: #28a745;
            box-shadow: none;
        }

        .custom-file-input.selected label::after {
            content: " ✓ File uploaded";
            font-size: 14px;
            color: #155724;
            margin-left: 10px;
        }

        /* Styling for the select dropdown */
        select {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%27http%3A//www.w3.org/2000/svg%27 viewBox%3D%270 0 4 5%27%3E%3Cpath fill%3D%27%23f78021%27 d%3D%27M2 0L0 2h4z%27/%3E%3C/svg%3E');
            background-repeat: no-repeat;
            background-position: right 16px center;
            background-size: 14px;
            padding: 14px 18px;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            width: 100%;
            font-size: 16px;
            background-color: #fff;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        select:focus {
            border-color: #f78021;
            outline: none;
            box-shadow: none;
        }

        select:hover {
            border-color: #d0d0d0;
        }

        /* Description of the issue textarea styling */
        textarea {
            width: 100%;
            padding: 14px 18px;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
            font-size: 16px;
            color: #2c3e50;
            resize: vertical;
            min-height: 120px;
            font-family: 'Open Sans', sans-serif;
            background-color: #fff;
            box-shadow: none;
            transition: all 0.3s ease;
        }

        textarea:focus {
            border-color: #f78021;
            outline: none;
            box-shadow: none;
        }

        textarea:hover {
            border-color: #d0d0d0;
        }

        input[type='submit'],
        input[type='button'] {
            padding: 14px 32px;
            border-radius: 10px;
            border: none;
            background: linear-gradient(135deg, #f78021 0%, #e66d1a 100%);
            color: white;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: none;
            min-width: 140px;
            margin: 10px 5px;
        }

        input[type='submit']:hover,
        input[type='button']:hover {
            background: linear-gradient(135deg, #e66d1a 0%, #d45a0f 100%);
            transform: none;
            box-shadow: none;
        }

        input[type='submit']:active,
        input[type='button']:active {
            transform: none;
            box-shadow: none;
        }

        input[type='button'] {
            background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
            box-shadow: none;
        }

        input[type='button']:hover {
            background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
            box-shadow: none;
        }


  
        
