.euc-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }
        .euc-modal {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 20px;
            border-radius: 8px 8px 0 0;
            box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
            width: 100%;
            max-width: 400px;
            z-index: 1001;
        }
        .euc-modal-header {
            font-size: 20px;
            font-weight: bold;
            text-align: center;
        }
        .euc-modal-content {
            margin: 15px 0;
            text-align: left;
        }
        .checkbox-group {
            margin-bottom: 15px;
        }
        .checkbox-group label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
        }
        .checkbox-group p {
            margin: 0;
            font-size: 14px;
            color: #555;
        }
        .button-group {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        .submit-button,
        .allow-all-button {
            flex: 1;
            padding: 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-align: center;
        }
        .submit-button {
            background-color: #007bff;
            color: white;
        }
        .submit-button:hover {
            background-color: #0056b3;
        }
        .allow-all-button {
            background-color: #28a745;
            color: white;
        }
        .allow-all-button:hover {
            background-color: #218838;
        }