        /* Add this to your CSS */
        #loader {
            position: fixed;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .spinner {
            border: 8px solid #f3f3f3; /* Light grey */
            border-top: 8px solid #0073e6; /* Blue */
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

         /* More specific rule */
        body .spinner,
        body #loader,
        body .modal-content {
            max-width: none;
            /* or another suitable value */
        }

        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background-color: #fefefe;
            padding: 20px;
            border: 1px solid #888;
            width: 50%;
            max-width: 400px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
        }

        .erc-input {
            width: 98%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
        }

        .erc-email-button {
            text-align: center;
            margin-top: 20px;
        }

        .erc-email-button button {
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            border: none;
            background-color: #0073e6;
            color: white;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }

        .erc-email-button button:hover {
            background-color: #005bb5;
        }

        /* New CSS for input values list */
        .input-values-list {
            margin-top: 20px;
        }

        .input-values-list ul {
            list-style-type: none;
            padding: 0;
        }

        .input-values-list li {
            background: #f9f9f9;
            border: 1px solid #ddd;
            padding: 10px;
            margin-bottom: 5px;
            border-radius: 4px;
        }


            /* More specific rule */
        body .erc-email-button,
        body #email-modal-one,
        body #email-modal-two,
        body .modal-content {
            max-width: none;
            /* or another suitable value */
        }