
        /* Styling for the form */
        .form-container {
            max-width: 400px;
            margin: 0 auto;
            padding: 20px;
            font-family: 'open sans';
        }

        .form-group {
            margin-bottom: 16px;
            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: 12px;
            border-radius: 10px;
            border: 1px solid #ccc;
            background-color: #f1f1f1;
            text-align: center;
            font-size: 16px;
            color: #333;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 250px;
        }

        .custom-file-input.selected label {
            background-color: #d4edda;
            color: #155724;
            border-color: #c3e6cb;
        }

        .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%23000%27 d%3D%27M2 0L0 2h4z%27/%3E%3C/svg%3E');
            background-repeat: no-repeat;
            background-position: right 12px center;
            background-size: 12px;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid #ccc;
            width: 100%;
        }

        select:focus {
            border-color: #66afe9;
            outline: none;
            box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
        }

        /* Description of the issue textarea styling */
        textarea {
            width: 100%;
            padding: 12px;
            border-radius: 10px;
            border: 1px solid #ccc;
            font-size: 16px;
            color: #333;
            resize: none; /* To prevent resizing */
            height: 100px;
        }

        textarea:focus {
            border-color: #66afe9;
            outline: none;
            box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
        }

        input[type='submit'],
        input[type='button'] {
            padding: 12px 20px;
            border-radius: 10px;
            border: none;
            background-color: #000000;
            color: white;
            cursor: pointer;
            transition: background-color 0.3s;
        }

      
        
