        #resumeFormContainer {
            max-width: 600px;
            margin: 30px auto;
            padding: 25px;
            border: 1px solid #ddd;
            border-radius: 10px;
            background-color: #f9f9f9;
            font-family: Arial, sans-serif;
        }

        #resumeFormContainer h2 {
            text-align: center;
            margin-bottom: 20px;
            color: #333;
        }

        #resumeForm label {
            display: block;
            font-weight: bold;
            margin-top: 10px;
            margin-bottom: 3px;
            color: #555;
        }

        #resumeForm input[type="text"],
        #resumeForm input[type="email"],
        #resumeForm input[type="file"],
        #resumeForm textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
            box-sizing: border-box;
        }

        #resumeForm button {
            background-color: #0073aa;
            color: #fff;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            margin-top: 12px;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            transition: background-color 0.3s;
        }

        #resumeForm button:hover {
            background-color: #005e8a;
        }

        #parsedOutput {
            margin-top: 15px;
            text-align: center;
            font-weight: bold;
        }

        #parsedOutput p {
            margin: 0;
        }
        select{
            padding: 13px;
            width: 100%;
            background-color: #ffffff;
            margin-bottom: 21px;
        }
        #form-submit {
            border: none !important;
            background: rgb(66, 158, 115) !important;
            color: #ffffff !important;
            padding: 0.6em 1em 0.4em !important;
        }

        @media screen and (max-width: 600px) {
            #resumeFormContainer {
                padding: 15px;
            }
        }
